|
1 | 1 | SET search_path TO process_tracker; |
2 | 2 |
|
3 | | -create schema process_tracker; |
| 3 | +create schema process_tracking; |
4 | 4 |
|
5 | | -alter schema process_tracker owner to pt_admin; |
| 5 | +alter schema process_tracking owner to pt_admin; |
6 | 6 |
|
7 | 7 | create table error_type_lkup |
8 | 8 | ( |
@@ -291,13 +291,13 @@ create table extract_tracking |
291 | 291 | extract_filename varchar(750) not null, |
292 | 292 | extract_location_id integer not null |
293 | 293 | constraint extract_tracking_fk01 |
294 | | - references process_tracking.location_lkup, |
| 294 | + references location_lkup, |
295 | 295 | extract_process_run_id integer |
296 | 296 | constraint extract_tracking_fk03 |
297 | | - references process_tracking.process_tracking, |
| 297 | + references process_tracking, |
298 | 298 | extract_status_id integer |
299 | 299 | constraint extract_tracking_fk02 |
300 | | - references process_tracking.extract_status_lkup, |
| 300 | + references extract_status_lkup, |
301 | 301 | extract_registration_date_time timestamp not null, |
302 | 302 | extract_write_low_date_time timestamp, |
303 | 303 | extract_write_high_date_time timestamp, |
@@ -333,8 +333,6 @@ comment on column extract_tracking.extract_load_record_count is 'The record coun |
333 | 333 |
|
334 | 334 | alter table extract_tracking owner to pt_admin; |
335 | 335 |
|
336 | | - |
337 | | - |
338 | 336 | create table extract_process_tracking |
339 | 337 | ( |
340 | 338 | extract_tracking_id integer not null |
|
0 commit comments