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.
14 lines
280 B
14 lines
280 B
create table exception_type_check
|
|
(
|
|
id serial not null,
|
|
user_id int not null,
|
|
type_id integer[]
|
|
);
|
|
|
|
create unique index exception_type_check_id_uindex
|
|
on exception_type_check (id);
|
|
|
|
alter table exception_type_check
|
|
add constraint exception_type_check_pk
|
|
primary key (id);
|
|
|
|
|