Typo fix
parent
a9d20d40dd
commit
d45cb5c7e4
|
@ -89,7 +89,7 @@ CREATE TABLE ancestries_sourceentries (
|
|||
id INTEGER PRIMARY KEY
|
||||
,ancestry_id INTEGER NOT NULL
|
||||
,sourceentry_id INTEGER NOT NULL
|
||||
,UNIQUE (id, actions_id, soruceentry_id),
|
||||
,UNIQUE (id, actions_id, sourceentry_id),
|
||||
,FOREIGN KEY (ancestry_id) REFERENCES ancestries(ancestry_id)
|
||||
,FOREIGN KEY (sourceentry_id) REFERENCES sourceentries(sourceentry_id)
|
||||
);
|
|
@ -44,7 +44,7 @@ CREATE TABLE armorgroup_sorceentries (
|
|||
id INTEGER PRIMARY KEY
|
||||
,grp_id INTEGER NOT NULL
|
||||
,sourceentry_id INTEGER NOT NULL
|
||||
,UNIQUE (id, grp_id, soruceentry_id),
|
||||
,UNIQUE (id, grp_id, sourceentry_id),
|
||||
,FOREIGN KEY (grp_id) REFERENCES armorgroup(grp_id)
|
||||
,FOREIGN KEY (sourceentry_id) REFERENCES sourceentries(sourceentry_id)
|
||||
);
|
||||
|
@ -54,7 +54,7 @@ CREATE TABLE armor_sourceentries (
|
|||
id INTEGER PRIMARY KEY
|
||||
,armor_id INTEGER NOT NULL
|
||||
,sourceentry_id INTEGER NOT NULL
|
||||
,UNIQUE (id, armor_id, soruceentry_id),
|
||||
,UNIQUE (id, armor_id, sourceentry_id),
|
||||
,FOREIGN KEY (armor_id) REFERENCES armor(armor_id)
|
||||
,FOREIGN KEY (sourceentry_id) REFERENCES sourceentries(sourceentry_id)
|
||||
);
|
|
@ -14,7 +14,7 @@ CREATE TABLE backgrounds_sourceentries (
|
|||
id INTEGER PRIMARY KEY
|
||||
,bg_id INTEGER NOT NULL
|
||||
,sourceentry_id INTEGER NOT NULL
|
||||
,UNIQUE (id, bg_id, soruceentry_id),
|
||||
,UNIQUE (id, bg_id, sourceentry_id),
|
||||
,FOREIGN KEY (bg_id) REFERENCES backgrounds(bg_id)
|
||||
,FOREIGN KEY (sourceentry_id) REFERENCES sourceentries(sourceentry_id)
|
||||
);
|
|
@ -11,7 +11,7 @@ CREATE TABLE bulks_sourceentries (
|
|||
id INTEGER PRIMARY KEY
|
||||
,bulk_id INTEGER NOT NULL
|
||||
,sourceentry_id INTEGER NOT NULL
|
||||
,UNIQUE (id, bulk_id, soruceentry_id),
|
||||
,UNIQUE (id, bulk_id, sourceentry_id),
|
||||
,FOREIGN KEY (bulk_id) REFERENCES bulks(bulk_id)
|
||||
,FOREIGN KEY (sourceentry_id) REFERENCES sourceentries(sourceentry_id)
|
||||
);
|
Loading…
Reference in New Issue