mirror of
https://github.com/Unleash/unleash.git
synced 2025-03-18 00:19:49 +01:00
chore: make milestone_strategies.title nullable (#8864)
This commit is contained in:
parent
219006c856
commit
db02918a35
@ -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();
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user