blob: 44cfe4a35c6ed9aefd1c7021fd2386615e91bd5c (
plain)
1
2
3
4
5
6
7
|
drop table auth.users_role_groups cascade;
create table auth.users_role_groups (
id serial8 primary key,
user_id bigint not null references auth.users(id),
role_group_id bigint not null references auth.role_groups(id)
);
|