Skip to content

Commit 1bc5e95

Browse files
author
Alex Meadows
committed
process_tracker_python-116 Change cluster_tracking to cluster_lkup
🐛 Missed some of the dbscript fixes
1 parent 116d88c commit 1bc5e95

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dbscripts/mysql_process_tracker.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ create table process_tracker.cluster_process
372372
process_id int not null,
373373
primary key (cluster_id, process_id),
374374
constraint cluster_process_fk01
375-
foreign key (cluster_id) references process_tracker.cluster_tracking (cluster_id),
375+
foreign key (cluster_id) references process_tracker.cluster_tracking_lkup (cluster_id),
376376
constraint cluster_process_fk02
377377
foreign key (process_id) references process_tracker.process (process_id)
378378
)

dbscripts/postgresql_process_tracker.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ create table cluster_process
572572
(
573573
cluster_id integer not null
574574
constraint cluster_process_fk01
575-
references cluster_tracking,
575+
references cluster_tracking_lkup,
576576
process_id integer not null
577577
constraint cluster_process_fk02
578578
references process,

0 commit comments

Comments
 (0)