Skip to content

Commit

Permalink
Merge pull request #208 from wguanicedew/dev
Browse files Browse the repository at this point in the history
fix alembic
  • Loading branch information
wguanicedew authored Sep 21, 2023
2 parents 61fdfeb + 15f5a21 commit b5bda5b
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def upgrade() -> None:
sa.Column("created_at", sa.DateTime, default=datetime.datetime.utcnow, nullable=False),
sa.Column("updated_at", sa.DateTime, default=datetime.datetime.utcnow, onupdate=datetime.datetime.utcnow, nullable=False),
sa.Column('others', JSON()),
replace_existing=True,
schema=schema)
op.create_primary_key('THROTTLER_PK', 'throttlers', ['throttler_id'], schema=schema)
op.create_unique_constraint('THROTTLER_SITE_UQ', 'throttlers', ['site'], schema=schema)
Expand Down

0 comments on commit b5bda5b

Please sign in to comment.