mirror of
https://github.com/openziti/zrok.git
synced 2024-11-25 17:43:53 +01:00
44 lines
1.6 KiB
SQL
44 lines
1.6 KiB
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 <> '')
|
|
);
|
|
|
|
--
|
|
-- identities
|
|
--
|
|
create table identities (
|
|
id integer primary key,
|
|
account_id integer constraint fk_accounts_identities references accounts on delete cascade,
|
|
ziti_id 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_ziti_id check (ziti_id <> '')
|
|
);
|
|
|
|
--
|
|
-- services
|
|
--
|
|
create table services (
|
|
id integer primary key,
|
|
account_id integer constraint fk_accounts_services references accounts on delete cascade,
|
|
ziti_id string not null unique,
|
|
endpoint string,
|
|
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_ziti_id check (ziti_id <> '')
|
|
); |