blob: f6603e67f679d75c549b242efa449f8fd658c703 (
plain)
1
2
3
4
5
6
7
|
drop table auth.users_roles_append cascade;
create table auth.users_roles_append (
id serial8 primary key,
user_id bigint not null references auth.users(id),
role_id bigint not null references auth.roles(id)
);
|