Skip to content

Commit 6decb39

Browse files
system controller scripts (#5637)
1 parent 17c870c commit 6decb39

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---- DROP TABLE
2+
DROP TABLE IF EXISTS public.system_network_controller_config;
3+
4+
---- DROP sequence
5+
DROP SEQUENCE IF EXISTS public.id_seq_system_network_controller_config;
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
CREATE SEQUENCE IF NOT EXISTS id_seq_system_network_controller_config;
2+
3+
CREATE TABLE IF NOT EXISTS "public"."system_network_controller_config"
4+
(
5+
"id" int NOT NULL DEFAULT nextval('id_seq_system_network_controller_config'::regclass),
6+
"ip" VARCHAR(50),
7+
"username" VARCHAR(100),
8+
"password" VARCHAR(100),
9+
"active" bool,
10+
"action_link_json" jsonb,
11+
"created_on" timestamptz,
12+
"created_by" integer,
13+
"updated_on" timestamptz,
14+
"updated_by" integer,
15+
PRIMARY KEY ("id")
16+
);

0 commit comments

Comments
 (0)