Skip to content

Commit 9edbfa6

Browse files
author
Vikas Agarwal
committed
updated sql for disabled and hidden fields in templates
1 parent 8d4c36c commit 9edbfa6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

migrations/20180608_project_add_templateId_and_new_tables.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,8 @@ CREATE TABLE product_templates (
139139
details character varying(255) NOT NULL,
140140
aliases json NOT NULL,
141141
template json NOT NULL,
142+
disabled: boolean DEFAULT false,
143+
hidden: boolean DEFAULT false,
142144
"deletedAt" timestamp with time zone,
143145
"createdAt" timestamp with time zone,
144146
"updatedAt" timestamp with time zone,
@@ -204,6 +206,8 @@ CREATE TABLE project_templates (
204206
aliases json NOT NULL,
205207
scope json NOT NULL,
206208
phases json NOT NULL,
209+
disabled: boolean DEFAULT false,
210+
hidden: boolean DEFAULT false,
207211
"deletedAt" timestamp with time zone,
208212
"createdAt" timestamp with time zone,
209213
"updatedAt" timestamp with time zone,

0 commit comments

Comments
 (0)