fix small schema issues in spells.sql

merge-requests/35/merge
James R Miller 2019-08-18 17:40:38 -05:00
parent 34486bc159
commit c2ffbfb161
1 changed files with 3 additions and 3 deletions

View File

@ -36,9 +36,9 @@ CREATE TABLE spells (
spells_id INTEGER PRIMARY KEY,
sources_id INTEGER NOT NULL, -- generated in spells.py from scraped data
sources_pages TEXT, -- generated in spells.py from scraped data
name TEXT NOT NULL UNIQUE, -- scraped from github repo
level INTEGER, -- scraped from github repo
trigger TEXT, -- scraped from spells.py NOTE, there are no duplicate triggers
"name" TEXT NOT NULL UNIQUE, -- scraped from github repo
"level" INTEGER, -- scraped from github repo
"trigger" TEXT, -- scraped from spells.py NOTE, there are no duplicate triggers
-- as of CRB, so not bothering with a separate spell triggers
-- table at this time
descr TEXT, -- scraped from github repo