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

create table auth.role_groups (
    id serial8 primary key,
    name character varying(255) not null,
    description character varying(255)
);