graphql-engine/server/src-rsr/migrations/08_to_1.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
354 B
MySQL
Raw Normal View History

ALTER TABLE hdb_catalog.hdb_relationship
ADD COLUMN comment TEXT NULL;
ALTER TABLE hdb_catalog.hdb_permission
ADD COLUMN comment TEXT NULL;
ALTER TABLE hdb_catalog.hdb_query_template
ADD COLUMN comment TEXT NULL;
UPDATE hdb_catalog.hdb_query_template
SET template_defn = json_build_object('type', 'select', 'args', template_defn->'select');