forked from hettie-d/postgres_air
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexes_down.sql
More file actions
37 lines (37 loc) · 1.31 KB
/
indexes_down.sql
File metadata and controls
37 lines (37 loc) · 1.31 KB
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
DROP INDEX flight_departure_airport;
DROP INDEX flight_arrival_airport;
DROP INDEX flight_scheduled_departure;
DROP INDEX flight_actual_departure;
DROP INDEX flight_update_ts;
DROP INDEX flight_canceled;
DROP INDEX flight_actual_departure_not_null;
DROP INDEX flight_depart_arr_sched_dep;
DROP INDEX flight_depart_arr_sched_dep_sched_arr;
DROP INDEX flight_depart_arr_sched_dep_inc_sched_arr;
DROP INDEX airport_city;
DROP INDEX booking_leg_booking_id;
DROP INDEX booking_leg_update_ts;
DROP INDEX booking_leg_flight_id;
DROP INDEX booking_account_id;
DROP INDEX booking_update_ts;
DROP INDEX booking_email_lower_pattern;
DROP INDEX frequent_fl_last_name_lower_pattern;
DROP INDEX frequent_fl_last_name_lower;
DROP INDEX phone_account_id;
DROP INDEX phone_update_ts;
DROP INDEX account_last_name;
DROP INDEX account_last_name_lower;
DROP INDEX account_last_name_lower_pattern;
DROP INDEX account_login;
DROP INDEX account_domain_lower_pattern;
DROP INDEX account_to_text_id_pattern;
DROP INDEX account_login_lower_pattern;
DROP INDEX account_frequent_flyer_id;
DROP INDEX boarding_pass_update_ts;
DROP INDEX boarding_pass_passenger_id;
DROP INDEX boarding_pass_booking_leg;
DROP INDEX passenger_account_id;
DROP INDEX passenger_last_name;
DROP INDEX passenger_last_name_lower_pattern;
DROP INDEX passenger_booking_id;
DROP INDEX bn_booking_id;