Skip to content

Commit ad5d637

Browse files
sql script update (#4522)
1 parent 35b084b commit ad5d637

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE public.lock_configuration
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
CREATE SEQUENCE IF NOT EXISTS id_seq_lock_configuration;
2+
3+
CREATE TABLE IF NOT EXISTS public.lock_configuration
4+
(
5+
"id" int4 NOT NULL DEFAULT nextval('id_seq_lock_configuration'::regclass),
6+
"config" text,
7+
"active" bool,
8+
"created_on" timestamptz NOT NULL,
9+
"created_by" int4 NOT NULL,
10+
"updated_on" timestamptz NOT NULL,
11+
"updated_by" int4 NOT NULL,
12+
PRIMARY KEY ("id")
13+
);

0 commit comments

Comments
 (0)