not a journal (#50)

This commit is contained in:
Michael Quigley 2022-09-20 13:49:14 -04:00
parent 6bf3f0f98c
commit 72e98beac9
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 0 additions and 3 deletions

View File

@ -9,7 +9,6 @@ type AccountRequest struct {
Model
Token string
Email string
Verified bool
SourceAddress string
}

View File

@ -23,13 +23,11 @@ create table account_requests (
id integer primary key,
token string not null unique,
email string not null unique,
verified boolean not null default(false),
source_address string not null,
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'))
);
--
-- environments
--