· 4 years ago · May 24, 2021, 04:14 AM
1create table if not exists property.receptionist_acl
2(
3 id varchar(64) not null
4 constraint receptionist_acl_pkey
5 primary key,
6 user_id varchar(64) not null
7 constraint user_id
8 references auth.users,
9 floors_id varchar(64) not null
10 constraint floors_id
11 references property.floors
12);
13
14alter table property.receptionist_acl owner to postgres;
15
16