Skip to content

Commit

Permalink
chore: make milestone_strategies.title nullable (#8864)
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek authored Nov 27, 2024
1 parent 219006c commit db02918
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/migrations/20241127074206-milestone-strategy-title-nullable.js
Original file line number Diff line number Diff line change
@@ -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();
};

0 comments on commit db02918

Please sign in to comment.