Skip to content

Commit

Permalink
chore: make milestone_strategies.title nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Nov 27, 2024
1 parent 219006c commit 04841d9
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 04841d9

Please sign in to comment.