We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc5e95 commit 1d4abe2Copy full SHA for 1d4abe2
1 file changed
process_tracker/models/capacity.py
@@ -10,12 +10,12 @@
10
11
class Cluster(Base):
12
13
- __tablename__ = "cluster_tracking"
+ __tablename__ = "cluster_tracking_lkup"
14
__table_args__ = {"schema": "process_tracker"}
15
16
cluster_id = Column(
17
Integer,
18
- Sequence("cluster_tracking_cluster_id_seq", schema="process_tracker"),
+ Sequence("cluster_tracking_lkup_cluster_id_seq", schema="process_tracker"),
19
primary_key=True,
20
nullable=False,
21
)
0 commit comments