mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
exports.up = function(db, cb) {
|
|
db.runSql(
|
|
`
|
|
ALTER TABLE milestone_strategies ALTER COLUMN title DROP NOT NULL;
|
|
`,
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function(db, cb) {
|
|
cb();
|
|
}; |