mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
9e1241d728
<!-- Thanks for creating a PR! To make it easier for reviewers and everyone else to understand what your changes relate to, please add some relevant content to the headings below. Feel free to ignore or delete sections that you don't think are relevant. Thank you! ❤️ --> Fixes `down` migration for add_title_to_strategy ## About the changes <!-- Describe the changes introduced. What are they and why are they being introduced? Feel free to also add screenshots or steps to view the changes if they're visual. --> <!-- Does it close an issue? Multiple? --> Closes # <!-- (For internal contributors): Does it relate to an issue on public roadmap? --> <!-- Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item: # --> ### Important files <!-- PRs can contain a lot of changes, but not all changes are equally important. Where should a reviewer start looking to get an overview of the changes? Are any files particularly important? --> ## Discussion points <!-- Anything about the PR you'd like to discuss before it gets merged? Got any questions or doubts? --> Signed-off-by: andreas-unleash <andreas@getunleash.ai>
86 lines
3.9 KiB
JavaScript
86 lines
3.9 KiB
JavaScript
'use strict';
|
|
|
|
exports.up = function (db, callback) {
|
|
db.runSql(
|
|
`
|
|
ALTER TABLE strategies ADD COLUMN IF NOT EXISTS title TEXT;
|
|
ALTER TABLE feature_strategies ADD COLUMN IF NOT EXISTS title TEXT;
|
|
|
|
CREATE OR REPLACE VIEW features_view AS
|
|
SELECT
|
|
features.name as name,
|
|
features.description as description,
|
|
features.type as type,
|
|
features.project as project,
|
|
features.stale as stale,
|
|
feature_environments.variants as variants,
|
|
features.impression_data as impression_data,
|
|
features.created_at as created_at,
|
|
features.last_seen_at as last_seen_at,
|
|
features.archived_at as archived_at,
|
|
feature_environments.enabled as enabled,
|
|
feature_environments.environment as environment,
|
|
environments.name as environment_name,
|
|
environments.type as environment_type,
|
|
environments.sort_order as environment_sort_order,
|
|
feature_strategies.id as strategy_id,
|
|
feature_strategies.strategy_name as strategy_name,
|
|
feature_strategies.parameters as parameters,
|
|
feature_strategies.constraints as constraints,
|
|
feature_strategies.sort_order as sort_order,
|
|
fss.segment_id as segments,
|
|
feature_strategies.title as strategy_title
|
|
FROM
|
|
features
|
|
LEFT JOIN feature_environments ON feature_environments.feature_name = features.name
|
|
LEFT JOIN feature_strategies ON feature_strategies.feature_name = feature_environments.feature_name
|
|
and feature_strategies.environment = feature_environments.environment
|
|
LEFT JOIN environments ON feature_environments.environment = environments.name
|
|
LEFT JOIN feature_strategy_segment as fss ON fss.feature_strategy_id = feature_strategies.id;
|
|
`,
|
|
callback,
|
|
);
|
|
};
|
|
|
|
exports.down = function (db, callback) {
|
|
db.runSql(
|
|
`
|
|
DROP VIEW features_view;
|
|
CREATE VIEW features_view AS
|
|
SELECT
|
|
features.name as name,
|
|
features.description as description,
|
|
features.type as type,
|
|
features.project as project,
|
|
features.stale as stale,
|
|
feature_environments.variants as variants,
|
|
features.impression_data as impression_data,
|
|
features.created_at as created_at,
|
|
features.last_seen_at as last_seen_at,
|
|
features.archived_at as archived_at,
|
|
feature_environments.enabled as enabled,
|
|
feature_environments.environment as environment,
|
|
environments.name as environment_name,
|
|
environments.type as environment_type,
|
|
environments.sort_order as environment_sort_order,
|
|
feature_strategies.id as strategy_id,
|
|
feature_strategies.strategy_name as strategy_name,
|
|
feature_strategies.parameters as parameters,
|
|
feature_strategies.constraints as constraints,
|
|
feature_strategies.sort_order as sort_order,
|
|
fss.segment_id as segments
|
|
FROM
|
|
features
|
|
LEFT JOIN feature_environments ON feature_environments.feature_name = features.name
|
|
LEFT JOIN feature_strategies ON feature_strategies.feature_name = feature_environments.feature_name
|
|
and feature_strategies.environment = feature_environments.environment
|
|
LEFT JOIN environments ON feature_environments.environment = environments.name
|
|
LEFT JOIN feature_strategy_segment as fss ON fss.feature_strategy_id = feature_strategies.id;
|
|
|
|
ALTER TABLE strategies DROP COLUMN IF EXISTS title;
|
|
ALTER TABLE feature_strategies DROP COLUMN IF EXISTS title;
|
|
`,
|
|
callback,
|
|
);
|
|
};
|