Change timestamp data type. (#4355)
Co-authored-by: Daniel García <dani-garcia@users.noreply.github.com>pull/4436/head
parent
29144b2ce0
commit
000c606029
@ -0,0 +1 @@
|
||||
ALTER TABLE twofactor MODIFY last_used BIGINT NOT NULL;
|
@ -0,0 +1,3 @@
|
||||
ALTER TABLE twofactor
|
||||
ALTER COLUMN last_used TYPE BIGINT,
|
||||
ALTER COLUMN last_used SET NOT NULL;
|
@ -0,0 +1 @@
|
||||
-- Integer size in SQLite is already i64, so we don't need to do anything
|
Loading…
Reference in new issue