Skip to content

Commit

Permalink
WCM-411, WCM-433: Simplify spelling after 969bd60 (instead of c1dedc3)
Browse files Browse the repository at this point in the history
  • Loading branch information
wosc committed Oct 11, 2024
1 parent c1e67a3 commit e7f83f5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ def upgrade() -> None:
op.add_column('properties', sa.Column('print_ressort', sa.Unicode(), nullable=True))
op.add_column('properties', sa.Column('volume_year', sa.Integer(), nullable=True))
op.add_column('properties', sa.Column('volume_number', sa.Integer(), nullable=True))
op.add_column('properties', sa.Column('published', sa.Boolean(), nullable=True))
op.execute(sa.text('ALTER TABLE properties ALTER COLUMN published set default false'))
op.add_column(
'properties', sa.Column('published', sa.Boolean(), server_default='false', nullable=True)
)
op.add_column('properties', sa.Column('article_genre', sa.Unicode(), nullable=True))


Expand Down

0 comments on commit e7f83f5

Please sign in to comment.