fix small schema issues in spells.sql
parent
34486bc159
commit
c2ffbfb161
|
@ -36,9 +36,9 @@ CREATE TABLE spells (
|
||||||
spells_id INTEGER PRIMARY KEY,
|
spells_id INTEGER PRIMARY KEY,
|
||||||
sources_id INTEGER NOT NULL, -- generated in spells.py from scraped data
|
sources_id INTEGER NOT NULL, -- generated in spells.py from scraped data
|
||||||
sources_pages TEXT, -- 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
|
"name" TEXT NOT NULL UNIQUE, -- scraped from github repo
|
||||||
level INTEGER, -- scraped from github repo
|
"level" INTEGER, -- scraped from github repo
|
||||||
trigger TEXT, -- scraped from spells.py NOTE, there are no duplicate triggers
|
"trigger" TEXT, -- scraped from spells.py NOTE, there are no duplicate triggers
|
||||||
-- as of CRB, so not bothering with a separate spell triggers
|
-- as of CRB, so not bothering with a separate spell triggers
|
||||||
-- table at this time
|
-- table at this time
|
||||||
descr TEXT, -- scraped from github repo
|
descr TEXT, -- scraped from github repo
|
||||||
|
|
Loading…
Reference in New Issue