Compare commits

..

No commits in common. "796640a4918bce8f6eb9dc5ebe11de4f00ab5700" and "e91c5e18467ee19b6bfb598cb0c6efc1a2819c5d" have entirely different histories.

2 changed files with 2 additions and 0 deletions

View File

@ -920,6 +920,7 @@ def upgrade() -> None:
sa.Column('vsp_type', sa.String(100)),
sa.Column('notes', sa.Text()),
sa.Column('location_form', sa.String()),
sa.Column('numbers', sa.Integer()),
sa.Column('rent_contract_num', sa.String()),
sa.Column('rent_end_date', sa.Date()),
schema='v3',

View File

@ -46,6 +46,7 @@ class Vsp(Base):
vsp_type: Mapped[str | None] = mapped_column(String(100), nullable=True)
notes: Mapped[str | None] = mapped_column(Text, nullable=True)
location_form: Mapped[str | None] = mapped_column(String, nullable=True)
numbers: Mapped[int | None] = mapped_column(Integer, nullable=True)
rent_contract_num: Mapped[str | None] = mapped_column(String, nullable=True)
rent_end_date : Mapped[date | None]= mapped_column(Date, nullable=True)