mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
14 lines
367 B
MySQL
14 lines
367 B
MySQL
|
--create old columns
|
||
|
ALTER TABLE features ADD "parameters" json;
|
||
|
ALTER TABLE features ADD "strategy_name" varchar(255);
|
||
|
|
||
|
--populate old columns
|
||
|
UPDATE features
|
||
|
SET strategy_name = f.strategies->0->>'name',
|
||
|
parameters = f.strategies->0->'parameters'
|
||
|
FROM features as f
|
||
|
WHERE f.name = features.name;
|
||
|
|
||
|
--drop new column
|
||
|
ALTER TABLE features DROP COLUMN "strategies";
|