1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
This commit is contained in:
sjaanus 2024-08-28 15:59:24 +03:00
parent b81f443722
commit 515d49aefe
No known key found for this signature in database
GPG Key ID: 20E007C0248BA7FF

View File

@ -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,
);