1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02: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) { exports.up = function (db, cb) {
db.runSql( 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, cb,
); );