skip_interstitial_grants sql structure (#704)

This commit is contained in:
Michael Quigley
2024-07-24 11:16:36 -04:00
parent 2755422a29
commit 275666c2b2
3 changed files with 44 additions and 0 deletions

View File

@ -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);