Skip to content

Commit

Permalink
#499 black
Browse files Browse the repository at this point in the history
  • Loading branch information
danmash committed Sep 30, 2023
1 parent 2249058 commit 2379955
Showing 1 changed file with 14 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,29 @@
from sqlalchemy.dialects import mssql

# revision identifiers, used by Alembic.
revision = '7d5d345fee36'
down_revision = 'aaa676c74969'
revision = "7d5d345fee36"
down_revision = "aaa676c74969"
branch_labels = None
depends_on = None


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column('conversations', 'sender_user_uuid',
existing_type=mssql.UNIQUEIDENTIFIER(),
nullable=True)
op.alter_column(
"conversations",
"sender_user_uuid",
existing_type=mssql.UNIQUEIDENTIFIER(),
nullable=True,
)
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column('conversations', 'sender_user_uuid',
existing_type=mssql.UNIQUEIDENTIFIER(),
nullable=False)
op.alter_column(
"conversations",
"sender_user_uuid",
existing_type=mssql.UNIQUEIDENTIFIER(),
nullable=False,
)
# ### end Alembic commands ###

0 comments on commit 2379955

Please sign in to comment.