mirror of
https://github.com/openziti/zrok.git
synced 2025-08-09 16:15:04 +02:00
frontend_grants for both databases (#539)
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
-- +migrate Up
|
||||
|
||||
create table frontend_grants (
|
||||
id serial primary key,
|
||||
|
||||
account_id integer references accounts (id) not null,
|
||||
frontend_id integer references frontends (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 frontend_grants_account_id_idx on frontend_grants (account_id);
|
||||
create index frontend_grants_frontend_id_idx on frontend_grants (frontend_id);
|
Reference in New Issue
Block a user