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

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