add monsters_traits table to monsters schema

merge-requests/35/merge
James R Miller 2019-08-18 17:45:10 -05:00
parent 132c691f60
commit c71ad3b5bd
1 changed files with 8 additions and 0 deletions

View File

@ -82,6 +82,14 @@ CREATE TABLE monsters_skills (
FOREIGN KEY (skills_id) REFERENCES skills(skills_id) FOREIGN KEY (skills_id) REFERENCES skills(skills_id)
); );
CREATE TABLE monsters_traits (
id INTEGER PRIMARY KEY,
monsters_id INTEGER NOT NULL,
traits_id INTEGER NOT NULL,
FOREIGN KEY (monsters_id) REFERENCES monsters(monsters_id),
FOREIGN KEY (traits_id) REFERENCES traits(traits_id)
);
-- TODO does this need to be separate table for monsters only or share the main -- TODO does this need to be separate table for monsters only or share the main
-- actions table -- actions table
CREATE TABLE monsteractions ( CREATE TABLE monsteractions (