1
0
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:
Mateusz Kwasniewski 2025-11-03 14:08:37 +01:00 committed by GitHub
parent 0afcba27bf
commit bbff52eb7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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