mirror of
https://github.com/openziti/zrok.git
synced 2024-11-30 03:53:18 +01:00
63 lines
2.5 KiB
SQL
63 lines
2.5 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 <> '')
|
|
);
|
|
|
|
--
|
|
-- account_requests
|
|
--
|
|
create table account_requests (
|
|
id integer primary key,
|
|
token string not null unique,
|
|
email string not null unique,
|
|
source_address string 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'))
|
|
);
|
|
|
|
--
|
|
-- 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,
|
|
zrok_service_id string not null unique,
|
|
frontend string,
|
|
backend 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 <> '')
|
|
); |