diff --git a/src/migrations/20231211122426-feature-strategies-created-by.js b/src/migrations/20231211122426-feature-strategies-created-by.js new file mode 100644 index 0000000000..6aab2ebe87 --- /dev/null +++ b/src/migrations/20231211122426-feature-strategies-created-by.js @@ -0,0 +1,19 @@ +'use strict'; + +exports.up = function (db, callback) { + db.runSql( + ` + ALTER TABLE feature_strategies ADD COLUMN IF NOT EXISTS created_by INTEGER; + `, + callback, + ); +}; + +exports.down = function (db, callback) { + db.runSql( + ` + ALTER TABLE feature_strategies DROP COLUMN IF EXISTS created_by; + `, + callback, + ); +};