-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer.sql
72 lines (56 loc) · 2.17 KB
/
transfer.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
--
-- Copy the production tables to the test ones
--
-- Used to capture permanent data changes
-- for testing
--
-- Not all tables copied, see end
--
DELETE FROM test_eventtools_event_status_values;
INSERT INTO test_eventtools_event_status_values
SELECT * FROM prod_eventtools_event_status_values;
DELETE FROM test_eventtools_accessibility_codes;
INSERT INTO test_eventtools_accessibility_codes
SELECT * FROM prod_eventtools_accessibility_codes;
DELETE FROM test_eventtools_clinic_locations;
INSERT INTO test_eventtools_clinic_locations
SELECT * FROM prod_eventtools_clinic_locations;
DELETE FROM test_eventtools_layouts;
INSERT INTO test_eventtools_layouts
SELECT * FROM prod_eventtools_layouts;
DELETE FROM test_eventtools_layout_tours;
INSERT INTO test_eventtools_layout_tours
SELECT * FROM prod_eventtools_layout_tours;
DELETE FROM test_eventtools_layout_tour_links;
INSERT INTO test_eventtools_layout_tour_links
SELECT * FROM prod_eventtools_layout_tour_links;
DELETE FROM test_eventtools_clinics;
INSERT INTO test_eventtools_clinics
SELECT * FROM prod_eventtools_clinics;
DELETE FROM test_eventtools_clinic_tags;
INSERT INTO test_eventtools_clinic_tags
SELECT * FROM prod_eventtools_clinic_tags;
DELETE FROM test_eventtools_misc_events;
INSERT INTO test_eventtools_misc_events
SELECT * FROM prod_eventtools_misc_events;
DELETE FROM test_eventtools_misc_event_tags;
INSERT INTO test_eventtools_misc_event_tags
SELECT * FROM prod_eventtools_misc_event_tags;
DELETE FROM test_eventtools_general_tours;
INSERT INTO test_eventtools_general_tours
SELECT * FROM prod_eventtools_general_tours;
DELETE FROM test_eventtools_opsession;
INSERT INTO test_eventtools_opsession
SELECT * FROM prod_eventtools_opsession;
DELETE FROM test_eventtools_opsession_req;
INSERT INTO test_eventtools_opsession_req
SELECT * FROM prod_eventtools_opsession_req;
--
-- tables not directly copied start here
--
-- don't copy log, just clear it
DELETE FROM test_eventtools_changelog;
-- Don't change the user access controls
-- DELETE FROM test_eventtools_users;
-- INSERT INTO test_eventtools_users
-- SELECT * FROM prod_eventtools_users;