Skip to content

Commit

Permalink
add col (#98)
Browse files Browse the repository at this point in the history
## Изменения
<!-- Опишите здесь на языке, понятном каждому, изменения, сделанные в
исходном коде по пунктам. -->

## Детали реализации
<!-- Здесь можно описать технические детали по пунктам. -->

## Check-List
<!-- После сохранения у следующих полей появятся галочки, которые нужно
проставить мышкой -->
- [ ] Вы проверили свой код перед отправкой запроса?
- [ ] Вы написали тесты к реализованным функциям?
- [ ] Вы не забыли применить форматирование `black` и `isort` для
_Back-End_ или `Prettier` для _Front-End_?
  • Loading branch information
Zimovchik authored Nov 12, 2024
1 parent b7baee3 commit 3bd7d4f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
"""stg_userdata.param +visible_in_user_response
Revision ID: 175a3aee3e1a
Revises: 4744a389ff0b
Create Date: 2024-11-12 06:44:42.995965
"""

import os

import sqlalchemy as sa
from alembic import op


# revision identifiers, used by Alembic.
revision = '175a3aee3e1a'
down_revision = '4744a389ff0b'
branch_labels = None
depends_on = None


def upgrade():
op.add_column('param', sa.Column('visible_in_user_response', sa.Boolean(), nullable=True), schema='STG_USERDATA')


def downgrade():
op.drop_column('param', 'visible_in_user_response', schema='STG_USERDATA')
1 change: 1 addition & 0 deletions profcomff_definitions/STG/userdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class Category(Base):

class Param(Base):
id: Mapped[int] = mapped_column(primary_key=True)
visible_in_user_response: Mapped[bool | None]
name: Mapped[str | None]
category_id: Mapped[int | None]
is_required: Mapped[bool | None]
Expand Down

0 comments on commit 3bd7d4f

Please sign in to comment.