Skip to content

Commit

Permalink
fix alembic
Browse files Browse the repository at this point in the history
  • Loading branch information
wguanicedew committed Sep 21, 2023
1 parent 20ba77b commit 15f5a21
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 15f5a21

Please sign in to comment.