-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migration de contenu à executer pour insérer la sous-action 5.2.2.3
- Loading branch information
1 parent
f2e8261
commit a6d8a18
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
BEGIN; | ||
|
||
-- Move cae_5.2.2.8 children into cae_5.2.2.9 children | ||
select private.move_action_data('cae_5.2.2.8', 'cae_5.2.2.9'); | ||
select private.move_action_data('cae_5.2.2.8.1', 'cae_5.2.2.9.1'); | ||
select private.move_action_data('cae_5.2.2.8.2', 'cae_5.2.2.9.2'); | ||
|
||
|
||
-- Move cae_5.2.2.7 into cae_5.2.2.8 | ||
select private.move_action_data('cae_5.2.2.7', 'cae_5.2.2.8'); | ||
|
||
-- Move cae_5.2.2.6 children into cae_5.2.2.7 children | ||
select private.move_action_data('cae_5.2.2.6', 'cae_5.2.2.7'); | ||
select private.move_action_data('cae_5.2.2.6.1', 'cae_5.2.2.7.1'); | ||
select private.move_action_data('cae_5.2.2.6.2', 'cae_5.2.2.7.2'); | ||
select private.move_action_data('cae_5.2.2.6.3', 'cae_5.2.2.7.3'); | ||
select private.move_action_data('cae_5.2.2.6.4', 'cae_5.2.2.7.4'); | ||
select private.move_action_data('cae_5.2.2.6.5', 'cae_5.2.2.7.5'); | ||
select private.move_action_data('cae_5.2.2.6.6', 'cae_5.2.2.7.6'); | ||
select private.move_action_data('cae_5.2.2.6.7', 'cae_5.2.2.7.7'); | ||
|
||
-- Move cae_5.2.2.5 children into cae_5.2.2.6 children | ||
select private.move_action_data('cae_5.2.2.5', 'cae_5.2.2.6'); | ||
select private.move_action_data('cae_5.2.2.5.1', 'cae_5.2.2.6.1'); | ||
select private.move_action_data('cae_5.2.2.5.2', 'cae_5.2.2.6.2'); | ||
select private.move_action_data('cae_5.2.2.5.3', 'cae_5.2.2.6.3'); | ||
|
||
-- Move cae_5.2.2.4 children into cae_5.2.2.5 children | ||
select private.move_action_data('cae_5.2.2.4', 'cae_5.2.2.5'); | ||
select private.move_action_data('cae_5.2.2.4.1', 'cae_5.2.2.5.1'); | ||
select private.move_action_data('cae_5.2.2.4.2', 'cae_5.2.2.5.2'); | ||
|
||
-- Move cae_5.2.2.3 children into cae_5.2.2.4 children | ||
select private.move_action_data('cae_5.2.2.3', 'cae_5.2.2.4'); | ||
select private.move_action_data('cae_5.2.2.3.1', 'cae_5.2.2.4.1'); | ||
select private.move_action_data('cae_5.2.2.3.2', 'cae_5.2.2.4.2'); | ||
select private.move_action_data('cae_5.2.2.3.3', 'cae_5.2.2.4.3'); | ||
|
||
|
||
-- Remove definitions | ||
delete from action_definition where action_id in ('cae_5.2.2.5.3', 'cae_5.2.2.3.1', 'cae_5.2.2.3.2', 'cae_5.2.2.6.4', 'cae_5.2.2.6.5', 'cae_5.2.2.6.6', 'cae_5.2.2.6.7', 'cae_5.2.2.3.3', 'cae_5.2.2.8.1', 'cae_5.2.2.8.2'); | ||
delete from action_computed_points where action_id in ('cae_5.2.2.5.3', 'cae_5.2.2.3.1', 'cae_5.2.2.3.2', 'cae_5.2.2.6.4', 'cae_5.2.2.6.5', 'cae_5.2.2.6.6', 'cae_5.2.2.6.7', 'cae_5.2.2.3.3', 'cae_5.2.2.8.1', 'cae_5.2.2.8.2'); | ||
delete from action_relation where id in ('cae_5.2.2.5.3', 'cae_5.2.2.3.1', 'cae_5.2.2.3.2', 'cae_5.2.2.6.4', 'cae_5.2.2.6.5', 'cae_5.2.2.6.6', 'cae_5.2.2.6.7', 'cae_5.2.2.3.3', 'cae_5.2.2.8.1', 'cae_5.2.2.8.2'); | ||
|
||
|
||
COMMIT; |