mirror of
https://github.com/openziti/zrok.git
synced 2025-08-09 08:05:04 +02:00
pr comments
This commit is contained in:
@ -5,12 +5,10 @@
|
||||
---
|
||||
|
||||
create table invites (
|
||||
id serial primary key,
|
||||
token varchar(32) not null unique,
|
||||
token_status varchar(1024) not null unique,
|
||||
created_at timestamp not null default(current_timestamp),
|
||||
updated_at timestamp not null default(current_timestamp),
|
||||
id serial primary key,
|
||||
token varchar(32) not null unique,
|
||||
created_at timestamptz not null default(current_timestamp),
|
||||
updated_at timestamptz not null default(current_timestamp),
|
||||
|
||||
constraint chk_token check(token <> ''),
|
||||
constraint chk_status check(token_status <> '')
|
||||
constraint chk_token check(token <> '')
|
||||
);
|
Reference in New Issue
Block a user