54 lines
1.6 KiB
SQL
54 lines
1.6 KiB
SQL
-- -*- mode:sql sql-product:sqlite -*-
|
|
|
|
/* MUST BE CALLED AFTER TRAITS TABLE IS FORMED */
|
|
|
|
/* Need to rethink how to model the various prerequisites */
|
|
|
|
|
|
CREATE TABLE feats (
|
|
feat_id INTEGER PRIMARY KEY,
|
|
short_name TEXT NOT NULL UNIQUE,
|
|
descr TEXT NOT NULL,
|
|
action_id INTEGER,
|
|
frequency_id INTEGER,
|
|
triggers_id INTEGER,
|
|
requirements_id INTEGER,
|
|
FOREIGN KEY (action_id) REFERENCES actioncosts(actioncosts_id),
|
|
FOREIGN KEY (frequency_id) REFERENCES frequency(freq_id),
|
|
FOREIGN KEY (triggers_id) REFERENCES triggers(triggers_id),
|
|
FOREIGN KEY (requirements_id) REFERENCES requirements(requirements_id)
|
|
);
|
|
|
|
CREATE TABLE featprereqs (
|
|
featprereqs_id INTEGER PRIMARY KEY,
|
|
descr TEXT NOT NULL UNIQUE,
|
|
feat_id INTEGER, -- this can be NULL since not all prereqs are feats
|
|
FOREIGN KEY (feat_id) REFERENCES feats(feat_id)
|
|
);
|
|
|
|
CREATE TABLE feats_featprereqs (
|
|
id INTEGER PRIMARY KEY,
|
|
feat_id INTEGER NOT NULL,
|
|
featprereqs_id INTEGER NOT NULL,
|
|
FOREIGN KEY (feat_id) REFERENCES feats(feat_id),
|
|
FOREIGN KEY (featprereqs_id) REFERENCES featprereqs(featprereqs_id)
|
|
);
|
|
|
|
|
|
CREATE TABLE feats_traits (
|
|
id INTEGER PRIMARY KEY,
|
|
feat_id INTEGER NOT NULL,
|
|
trait_id INTEGER NOT NULL,
|
|
FOREIGN KEY (feat_id) REFERENCES feats(feat_id),
|
|
FOREIGN KEY (trait_id) REFERENCES traits(trait_id)
|
|
);
|
|
|
|
-- Joining table --
|
|
CREATE TABLE feat_sourceentries (
|
|
id INTEGER PRIMARY KEY
|
|
,feat_id INTEGER NOT NULL
|
|
,sourceentry_id INTEGER NOT NULL
|
|
,UNIQUE (id, feat_id, sourceentry_id)
|
|
,FOREIGN KEY (feat_id) REFERENCES feat(feat_id)
|
|
,FOREIGN KEY (sourceentry_id) REFERENCES sourceentries(sourceentry_id)
|
|
); |