7 lines
221 B
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
|
|
);
|