You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
812 B
16 lines
812 B
1 year ago
|
create table abn_report_params
|
||
|
(
|
||
|
id serial
|
||
|
primary key,
|
||
|
sensor_id varchar(300) not null,
|
||
|
sensor_location_description varchar(300) not null,
|
||
|
factor varchar(30) not null,
|
||
|
factor_id varchar(30) not null,
|
||
|
abn_type integer
|
||
|
constraint t_abn_report_params_t_abn_type_id_fk
|
||
|
references abn_type,
|
||
|
params jsonb not null,
|
||
|
enabled boolean default true not null,
|
||
|
item_index integer not null
|
||
|
);
|