ezidam/crates/database/migrations/20230506170211_roles.up.sql

7 lines
221 B
SQL

create table if not exists roles
(
name TEXT not null primary key,
label TEXT not null,
created_at TEXT not null default CURRENT_TIMESTAMP,
is_archived INTEGER not null default 0
);