diff --git a/src/migrations/20240828154255-user-first-seen-at.js b/src/migrations/20240828154255-user-first-seen-at.js index ab77edff22..90cf6d7a00 100644 --- a/src/migrations/20240828154255-user-first-seen-at.js +++ b/src/migrations/20240828154255-user-first-seen-at.js @@ -3,7 +3,7 @@ exports.up = function (db, cb) { db.runSql( ` - ALTER TABLE users ADD COLUMN first_seen_at timestamp without time zone; + ALTER TABLE users ADD COLUMN first_seen_at TIMESTAMP WITHOUT TIME ZONE; `, cb, );