summaryrefslogtreecommitdiff
path: root/sql/tables/auth.role_groups_roles.sql
blob: 7ebab21a8cd89a892a0a4624ddf4ca87d61b3c3d (plain)
1
2
3
4
5
6
7
drop table auth.role_groups_roles cascade;

create table auth.role_groups_roles (
    id serial8 primary key,
    role_group_id bigint not null references auth.role_groups(id),
    role_id bigint not null references auth.roles(id)
);