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
95e8971f
Commit
95e8971f
authored
Jun 13, 2013
by
Leo Gordon
Browse files
allow the accumulated values to be longer than 255 characters
parent
f9bb503d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
sql/patch_2013-06-13.sql
sql/patch_2013-06-13.sql
+2
-0
sql/tables.pgsql
sql/tables.pgsql
+1
-1
sql/tables.sql
sql/tables.sql
+1
-1
sql/tables.sqlite
sql/tables.sqlite
+1
-1
No files found.
sql/patch_2013-06-13.sql
0 → 100644
View file @
95e8971f
-- allow the values to contain longer strings:
ALTER
TABLE
accu
MODIFY
COLUMN
value
TEXT
;
sql/tables.pgsql
View file @
95e8971f
...
...
@@ -332,7 +332,7 @@ CREATE TABLE accu (
receiving_job_id INTEGER NOT NULL,
struct_name VARCHAR(255) NOT NULL,
key_signature VARCHAR(255) NOT NULL,
value
VARCHAR(255)
value
TEXT
);
CREATE INDEX ON accu (sending_job_id);
CREATE INDEX ON accu (receiving_job_id);
...
...
sql/tables.sql
View file @
95e8971f
...
...
@@ -327,7 +327,7 @@ CREATE TABLE accu (
receiving_job_id
INTEGER
NOT
NULL
,
struct_name
VARCHAR
(
255
)
NOT
NULL
,
key_signature
VARCHAR
(
255
)
NOT
NULL
,
value
VARCHAR
(
255
)
,
value
TEXT
,
KEY
accu_sending_idx
(
sending_job_id
),
KEY
accu_receiving_idx
(
receiving_job_id
)
...
...
sql/tables.sqlite
View file @
95e8971f
...
...
@@ -323,7 +323,7 @@ CREATE TABLE accu (
receiving_job_id INTEGER NOT NULL,
struct_name VARCHAR(255) NOT NULL,
key_signature VARCHAR(255) NOT NULL,
value
VARCHAR(255)
value
TEXT
);
CREATE INDEX accu_sending_idx ON accu (sending_job_id);
CREATE INDEX accu_receiving_idx ON accu (receiving_job_id);
...
...
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