1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

#80 Add schema change

This commit is contained in:
andsandv 2015-02-10 16:27:59 +01:00 committed by Ivar Conradi Østhus
parent d600cdd359
commit 90aa74a464
3 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1 @@
module.exports = require('../lib/migrationRunner').create('006-rename-eventtype');

View File

@ -0,0 +1,2 @@
UPDATE events SET type=feature-revive WHERE type=feature-revived;
UPDATE events SET type=feature-archive WHERE type=feature-archived;

View File

@ -0,0 +1,2 @@
UPDATE events SET type=feature-revived WHERE type=feature-revive;
UPDATE events SET type=feature-archived WHERE type=feature-archive;