Skip to content

Commit

Permalink
hotfix: database migration issue
Browse files Browse the repository at this point in the history
  • Loading branch information
the-infinity committed May 16, 2024
1 parent 4ef97d8 commit b29e1ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## Version 0.4.1

Released 2024-05-16

### Fixes

* Issue in database migration leading to database not matching the model


## Version 0.4.0

Released 2024-05-16
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def upgrade():
op.create_table(
'tag',
sa.Column('parking_site_id', sa.BigInteger(), nullable=False),
sa.Column('tag', sa.String(length=256), nullable=False),
sa.Column('value', sa.String(length=256), nullable=False),
sa.Column('id', sa.BigInteger(), nullable=False),
sa.Column('created_at', sqlalchemy_utc.sqltypes.UtcDateTime(timezone=True), nullable=False),
sa.Column('modified_at', sqlalchemy_utc.sqltypes.UtcDateTime(timezone=True), nullable=False),
Expand Down

0 comments on commit b29e1ab

Please sign in to comment.