summaryrefslogtreecommitdiff
path: root/src/main/resources/db/migration/postgresql/V0_3_0__UserRoles.sql
blob: 7dbfc088ee1d9e77a703b453e7c51078029d817c (plain)
1
2
3
4
5
6
7
8
CREATE TABLE IF NOT EXISTS user_role
(
    id         serial,
    username   varchar(255)                           not null unique,
    role       varchar(255)                           not null,
    created_at timestamp with time zone default now() not null,
    PRIMARY KEY (id)
);