[Fix] Durability
This commit is contained in:
parent
8e709513c0
commit
c2e7061041
5 changed files with 13 additions and 3 deletions
|
|
@ -15,6 +15,7 @@ CREATE TABLE IF NOT EXISTS users (
|
|||
sub_end BIGINT NOT NULL DEFAULT 0,
|
||||
public_key BLOB NOT NULL,
|
||||
token BLOB NOT NULL,
|
||||
created_at TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
|
||||
|
||||
UNIQUE KEY uk_users_username (username),
|
||||
KEY idx_users_iota_id (iota_id),
|
||||
|
|
|
|||
2
migrations/008_user_created_at.sql
Normal file
2
migrations/008_user_created_at.sql
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE users
|
||||
ADD COLUMN created_at TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3);
|
||||
Loading…
Reference in a new issue