summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/scire.sql')
-rw-r--r--docs/scire.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/scire.sql b/docs/scire.sql
index 49021eb..8b4e14f 100644
--- a/docs/scire.sql
+++ b/docs/scire.sql
@@ -121,7 +121,7 @@ CREATE TABLE job_conditions (
# might also include data (partition full?)
PRIMARY KEY (jobid),
- FOREIGN KEY (jobid) REFERENCES jobs.jobid,
+ FOREIGN KEY (jobid) REFERENCES jobs.jobid
) ENGINE = MyISAM;
DROP TABLE IF EXISTS scripts;
@@ -231,7 +231,7 @@ CREATE TABLE dyn_tags (
tag VARCHAR(30) NOT NULL,
tag_value VARCHAR(255),
PRIMARY KEY (jobid, tag),
- FOREIGN KEY (jobid) REFERENCES jobs.jobid,
+ FOREIGN KEY (jobid) REFERENCES jobs.jobid
) ENGINE = MyISAM;
drop table if exists modules;