mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
Database migration #43
This commit is contained in:
parent
ffe6e58d65
commit
10e6ee1091
@ -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