Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
215ec6ca
Commit
215ec6ca
authored
Jun 08, 2012
by
Leo Gordon
Browse files
updated sqlite schema: added resource_class and modified resource_description
parent
d8e51e9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
sql/tables.sqlite
sql/tables.sqlite
+9
-1
No files found.
sql/tables.sqlite
View file @
215ec6ca
...
...
@@ -307,11 +307,19 @@ CREATE TABLE resource_description (
rc_id INTEGER NOT NULL,
meadow_type TEXT, /* enum('LSF', 'LOCAL') DEFAULT 'LSF' NOT NULL, */
parameters varchar(255) DEFAULT '' NOT NULL,
description varchar(255),
PRIMARY KEY(rc_id, meadow_type)
);
CREATE TABLE resource_class (
resource_class_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name varchar(40) NOT NULL
);
CREATE UNIQUE INDEX IF NOT EXISTS resource_class_name_idx ON resource_class (name);
-- ---------------------------------------------------------------------------------
--
-- Table structure for table 'analysis_stats'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment