Skip to content

Commit

Permalink
chore: remove archived column from features table
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Mar 5, 2024
1 parent 095b6ec commit f44828b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/migrations/20240305094305-features-remove-archived.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
exports.up = function (db, cb) {
db.runSql(
`
ALTER TABLE features DROP COLUMN IF EXISTS archived;
`,
cb,
);
};

0 comments on commit f44828b

Please sign in to comment.