Skip to content
Snippets Groups Projects
Commit faa24c98 authored by Leo Gordon's avatar Leo Gordon
Browse files

patch for older hive databases

parent 28a8209b
No related branches found
No related tags found
No related merge requests found
# adding resource requirements:
ALTER TABLE analysis_stats ADD COLUMN rc_id int(10) unsigned default 0 NOT NULL;
ALTER TABLE analysis_stats_monitor ADD COLUMN rc_id int(10) unsigned default 0 NOT NULL;
CREATE TABLE resource_description (
rc_id int(10) unsigned DEFAULT 0 NOT NULL,
meadow_type enum('LSF', 'LOCAL') DEFAULT 'LSF' NOT NULL,
parameters varchar(255) DEFAULT '' NOT NULL,
description varchar(255),
PRIMARY KEY(rc_id, meadow_type)
) ENGINE=InnoDB;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment