1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

chore: make milestone_strategies.title nullable (#8864)

This commit is contained in:
David Leek 2024-11-27 09:16:24 +01:00 committed by GitHub
parent 219006c856
commit db02918a35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,12 @@
exports.up = function(db, cb) {
db.runSql(
`
ALTER TABLE milestone_strategies ALTER COLUMN title DROP NOT NULL;
`,
cb,
);
};
exports.down = function(db, cb) {
cb();
};