Skip to content

Commit

Permalink
process_tracker_python-116 Change cluster_tracking to cluster_lkup
Browse files Browse the repository at this point in the history
🐛 Missed some of the dbscript fixes
  • Loading branch information
Alex Meadows committed Nov 18, 2019
1 parent 1d4abe2 commit 60b55ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbscripts/postgresql_process_tracker.sql
Expand Up @@ -561,12 +561,12 @@ create table cluster_tracking_lkup
cluster_current_process_usage integer
);

comment on table cluster_tracking is 'Capacity cluster tracking';
comment on table cluster_tracking_lkup is 'Capacity cluster tracking';

alter table cluster_tracking owner to pt_admin;
alter table cluster_tracking_lkup owner to pt_admin;

create unique index cluster_tracking_cluster_name_uindex
on cluster_tracking (cluster_name);
on cluster_tracking_lkup (cluster_name);

create table cluster_process
(
Expand Down

0 comments on commit 60b55ac

Please sign in to comment.