zrok/controller/store/sql/000_base.sql
2022-07-29 11:10:39 -04:00

29 lines
964 B
SQL

-- +migrate Up
--
-- accounts
--
create table accounts (
id integer primary key,
username string not null unique,
password string not null,
token string not null unique,
created_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
updated_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
constraint chk_username check (username <> ''),
constraint chk_password check (username <> ''),
constraint chk_token check(token <> '')
);
--
-- services
--
create table services (
id integer primary key,
name string not null unique,
created_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
updated_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
constraint chk_name check (name <> '')
);