mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
Fix
This commit is contained in:
parent
190fb616bc
commit
25187c819a
@ -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);
|
|
||||||
};
|
|
Loading…
Reference in New Issue
Block a user