mirror of
https://github.com/openziti/zrok.git
synced 2025-01-03 04:29:19 +01:00
not a journal (#50)
This commit is contained in:
parent
6bf3f0f98c
commit
72e98beac9
@ -9,7 +9,6 @@ type AccountRequest struct {
|
|||||||
Model
|
Model
|
||||||
Token string
|
Token string
|
||||||
Email string
|
Email string
|
||||||
Verified bool
|
|
||||||
SourceAddress string
|
SourceAddress string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,13 +23,11 @@ create table account_requests (
|
|||||||
id integer primary key,
|
id integer primary key,
|
||||||
token string not null unique,
|
token string not null unique,
|
||||||
email string not null unique,
|
email string not null unique,
|
||||||
verified boolean not null default(false),
|
|
||||||
source_address string not null,
|
source_address string not null,
|
||||||
created_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now')),
|
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'))
|
updated_at datetime not null default(strftime('%Y-%m-%d %H:%M:%f', 'now'))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- environments
|
-- environments
|
||||||
--
|
--
|
||||||
|
Loading…
Reference in New Issue
Block a user