From c2ffbfb161940e62c4ec626b3b984f346f94ed6c Mon Sep 17 00:00:00 2001 From: James R Miller Date: Sun, 18 Aug 2019 17:40:38 -0500 Subject: [PATCH] fix small schema issues in spells.sql --- schema/spells.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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