1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00
This commit is contained in:
sjaanus 2024-08-28 16:24:30 +03:00
parent 190fb616bc
commit 25187c819a
No known key found for this signature in database
GPG Key ID: 20E007C0248BA7FF

View File

@ -1,18 +0,0 @@
'use strict';
exports.up = function (db, cb) {
db.runSql(
`
ALTER TABLE users ADD COLUMN first_seen_at TIMESTAMP WITHOUT TIME ZONE;
`,
cb,
);
};
exports.down = function (db, cb) {
db.runSql(
`
ALTER TABLE users DROP COLUMN first_seen_at;
`,
cb);
};