added hash column back to support older versions of core

pull/59/head
Chris Veilleux 2019-03-03 14:09:46 -06:00
parent 581bf1812d
commit 96649e7ebf
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ CREATE TABLE skill.settings_display (
DEFAULT gen_random_uuid(),
skill_id uuid NOT NULL
REFERENCES skill.skill ON DELETE CASCADE,
settings_display jsonb NOT NULL,
settings_display jsonb NOT NULL,
hash text NOT NULL,
insert_ts TIMESTAMP NOT NULL
DEFAULT CURRENT_TIMESTAMP,
UNIQUE (skill_id, settings_display)