Skip to content

Commit 40c05e2

Browse files
feat: delete temporary model column used only for testing
1 parent 695b056 commit 40c05e2

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

rest_api/rest_api_server/models/models.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1770,11 +1770,6 @@ class EmployeeEmail(Base, ValidatorMixin, MutableMixin):
17701770
enabled = Column(NullableBool('enabled'), nullable=False, default=True,
17711771
info=ColumnPermissions.full)
17721772

1773-
# TODO: remove me, only for testing migrations
1774-
description = Column(
1775-
MediumLargeNullableString('description'), nullable=True,
1776-
info=ColumnPermissions.full, default=None)
1777-
17781773
__table_args__ = (
17791774
UniqueConstraint("employee_id", "email_template", "deleted_at",
17801775
name="uc_employee_email_template"),)

0 commit comments

Comments
 (0)