test bota #77

Closed
Raykov-MS wants to merge 373 commits from test into main
2 changed files with 0 additions and 2 deletions
Showing only changes of commit 796640a491 - Show all commits

View File

@ -920,7 +920,6 @@ 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,7 +46,6 @@ 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)