Skip to content

Commit 543a0f6

Browse files
committed
fix t_linear_groups table name in models
1 parent 0ac4410 commit 543a0f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ref_geo/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class LLinears(db.Model):
9595

9696
@serializable
9797
class TLinearGroups(db.Model):
98-
__table_name__ = "l_linear_groups"
98+
__table_name__ = "t_linear_groups"
9999
__table_args__ = {"schema": "ref_geo"}
100100
id_group = db.Column(db.Integer, primary_key=True)
101101
name = db.Column(db.Unicode(length=250))

0 commit comments

Comments
 (0)