mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-10 01:19:53 +01:00
feat: milestone progression paused at (#10907)
This commit is contained in:
parent
0afcba27bf
commit
bbff52eb7b
@ -0,0 +1,19 @@
|
||||
exports.up = function(db, cb) {
|
||||
db.runSql(
|
||||
`
|
||||
ALTER TABLE milestone_progressions
|
||||
ADD COLUMN paused_at TIMESTAMP WITH TIME ZONE;
|
||||
`,
|
||||
cb,
|
||||
);
|
||||
};
|
||||
|
||||
exports.down = function(db, cb) {
|
||||
db.runSql(
|
||||
`
|
||||
ALTER TABLE milestone_progressions
|
||||
DROP COLUMN IF EXISTS paused_at;
|
||||
`,
|
||||
cb,
|
||||
);
|
||||
};
|
||||
Loading…
Reference in New Issue
Block a user