Skip to content

Commit 1d4abe2

Browse files
author
Alex Meadows
committed
process_tracker_python-102 Add relationship to extract and extract location
🐛 Fixed issue with default sequence name Closes #102
1 parent 1bc5e95 commit 1d4abe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

process_tracker/models/capacity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
class Cluster(Base):
1212

13-
__tablename__ = "cluster_tracking"
13+
__tablename__ = "cluster_tracking_lkup"
1414
__table_args__ = {"schema": "process_tracker"}
1515

1616
cluster_id = Column(
1717
Integer,
18-
Sequence("cluster_tracking_cluster_id_seq", schema="process_tracker"),
18+
Sequence("cluster_tracking_lkup_cluster_id_seq", schema="process_tracker"),
1919
primary_key=True,
2020
nullable=False,
2121
)

0 commit comments

Comments
 (0)