mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
Database migration #43
This commit is contained in:
parent
388cdb755a
commit
5e40d4dc7f
@ -0,0 +1 @@
|
||||
module.exports = require('../lib/migrationRunner').create('005-archived-flag-to-features');
|
1
migrations/sql/005-archived-flag-to-features.down.sql
Normal file
1
migrations/sql/005-archived-flag-to-features.down.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE features DROP COLUMN "archived";
|
1
migrations/sql/005-archived-flag-to-features.up.sql
Normal file
1
migrations/sql/005-archived-flag-to-features.up.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE features ADD archived integer DEFAULT 0;
|
Loading…
Reference in New Issue
Block a user