diff --git a/schema/spells.sql b/schema/spells.sql index a2af84b..f4cf363 100644 --- a/schema/spells.sql +++ b/schema/spells.sql @@ -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