Merge branch 'master' of git.esilibrary.com:migration-tools
[migration-tools.git] / remove_ou_data / 14_remove_ou_extras.sql
1 -- Copyright 2015, Equinox Software, Inc.
2 -- Author: Galen Charlton <gmc@esilibrary.com>
3 --
4 -- This program is free software; you can redistribute it and/or
5 -- modify it under the terms of the GNU General Public License
6 -- as published by the Free Software Foundation; either version 2
7 -- of the License, or (at your option) any later version.
8 --
9 -- This program is distributed in the hope that it will be useful,
10 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
11 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 -- GNU General Public License for more details.
13 --
14 -- You should have received a copy of the GNU General Public License
15 -- along with this program; if not, write to the Free Software
16 -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
18 \set ou_to_del ''''EXAMPLE''''
19 \set ECHO all
20 \timing
21
22 create index tmp_idx on money.billing(btype);
23 ALTER TABLE action.circulation DISABLE TRIGGER action_circulation_target_copy_trig;
24 ALTER TABLE asset.copy_location DISABLE RULE protect_copy_location_delete;
25
26 BEGIN;
27
28 DELETE FROM actor.org_address WHERE org_unit IN
29 (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del);
30
31 UPDATE actor.org_unit SET ill_address = NULL, holds_address = NULL, mailing_address = NULL, billing_address = NULL
32 WHERE id IN
33 (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del);
34
35 UPDATE action.circulation SET copy_location = 1
36 WHERE copy_location IN (SELECT id FROM asset.copy_location WHERE owning_lib IN 
37 (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del));
38 DELETE FROM asset.copy_location WHERE owning_lib IN
39 (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del);
40
41 DELETE FROM money.billing
42 WHERE btype IN (
43     SELECT id FROM config.billing_type
44     WHERE owner IN
45     (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del)
46 );
47
48 DELETE FROM action_trigger.event
49 WHERE event_def IN (
50     SELECT id FROM action_trigger.event_definition
51     WHERE owner IN
52     (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del)
53 );
54 DELETE FROM action_trigger.environment
55 WHERE event_def IN (
56     SELECT id FROM action_trigger.event_definition
57     WHERE owner IN
58     (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del)
59 );
60 DELETE FROM action_trigger.event_params
61 WHERE event_def IN (
62     SELECT id FROM action_trigger.event_definition
63     WHERE owner IN
64     (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del)
65 );
66 DELETE FROM action_trigger.event_definition
67     WHERE owner IN
68     (SELECT (actor.org_unit_descendants(id)).id from actor.org_unit where shortname = :ou_to_del);
69
70 COMMIT;
71 DROP INDEX money.tmp_idx;
72 ALTER TABLE asset.copy_location ENABLE RULE protect_copy_location_delete;
73 ALTER TABLE action.circulation ENABLE TRIGGER action_circulation_target_copy_trig;