mirror of
https://github.com/openziti/zrok.git
synced 2024-11-25 17:43:53 +01:00
49 lines
1.9 KiB
SQL
49 lines
1.9 KiB
SQL
-- +migrate Up
|
|
|
|
--
|
|
-- accounts
|
|
--
|
|
create table accounts (
|
|
id integer primary key,
|
|
email 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_email check (email <> ''),
|
|
constraint chk_password check (password <> ''),
|
|
constraint chk_token check(token <> '')
|
|
);
|
|
|
|
--
|
|
-- environments
|
|
--
|
|
create table environments (
|
|
id integer primary key,
|
|
account_id integer constraint fk_accounts_identities references accounts on delete cascade,
|
|
description string,
|
|
host string,
|
|
address string,
|
|
ziti_identity_id string not null unique,
|
|
active boolean not null,
|
|
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_identity_id check (ziti_identity_id <> '')
|
|
);
|
|
|
|
--
|
|
-- services
|
|
--
|
|
create table services (
|
|
id integer primary key,
|
|
environment_id integer constraint fk_environments_services references environments on delete cascade,
|
|
ziti_service_id string not null unique,
|
|
endpoint string,
|
|
active boolean not null,
|
|
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_service_id check (ziti_service_id <> '')
|
|
); |