mirror of
https://github.com/openziti/zrok.git
synced 2025-08-09 00:04:43 +02:00
skip_interstitial_grants sql structure (#704)
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
-- +migrate Up
|
||||
|
||||
create table skip_interstitial_grants (
|
||||
id serial primary key,
|
||||
|
||||
account_id integer references accounts (id) not null,
|
||||
|
||||
created_at timestamptz not null default(current_timestamp),
|
||||
updated_at timestamptz not null default(current_timestamp),
|
||||
deleted boolean not null default(false)
|
||||
);
|
||||
|
||||
create index skip_interstitial_grants_id_idx on skip_interstitial_grants (account_id);
|
Reference in New Issue
Block a user