19 lines
383 B
SQL
19 lines
383 B
SQL
|
|
-- Your SQL goes here
|
||
|
|
|
||
|
|
create table acl
|
||
|
|
(
|
||
|
|
id varchar not null
|
||
|
|
constraint acl_pk
|
||
|
|
primary key,
|
||
|
|
from_id varchar not null,
|
||
|
|
from_type varchar not null,
|
||
|
|
to_id varchar not null,
|
||
|
|
to_type varchar not null,
|
||
|
|
actions jsonb,
|
||
|
|
created_at timestamp,
|
||
|
|
updated_at timestamp,
|
||
|
|
created_by varchar,
|
||
|
|
updated_by varchar
|
||
|
|
);
|
||
|
|
|