24 lines
1.2 KiB
SQL
24 lines
1.2 KiB
SQL
-- apply changes
|
|
create table plant (
|
|
sys_pk bigint generated by default as identity not null,
|
|
deleted_on timestamp,
|
|
current_approval_level integer default 0 not null,
|
|
required_approval_levels integer default 0 not null,
|
|
deleted boolean default false not null,
|
|
version integer default 1 not null,
|
|
created_at timestamp default 'now()' not null,
|
|
modified_at timestamp default 'now()' not null,
|
|
deleted_by varchar(255),
|
|
approval_status varchar(8) default 'APPROVED' not null,
|
|
tags varchar[] default '{}' not null,
|
|
comments jsonb default '[]' not null,
|
|
plant_id varchar(255) not null,
|
|
plant_name varchar(255) not null,
|
|
created_by varchar(255) not null,
|
|
modified_by varchar(255) not null,
|
|
constraint ck_plant_approval_status check ( approval_status in ('PENDING','APPROVED','REJECTED')),
|
|
constraint plantid_idx unique (plant_id),
|
|
constraint pk_plant primary key (sys_pk)
|
|
);
|
|
|