Fix PostgreSQL migration

The PostgreSQL migration should have used `TIMESTAMP` rather than `DATETIME`.
This commit is contained in:
Jeremy Lin 2021-10-31 17:50:00 -07:00
parent a2316ca091
commit c49ee47de0
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ CREATE TABLE twofactor_incomplete (
user_uuid VARCHAR(40) NOT NULL REFERENCES users(uuid),
device_uuid VARCHAR(40) NOT NULL,
device_name TEXT NOT NULL,
login_time DATETIME NOT NULL,
login_time TIMESTAMP NOT NULL,
ip_address TEXT NOT NULL,
PRIMARY KEY (user_uuid, device_uuid)