pinned web3 to v6; alembic fixes

This commit is contained in:
tim
2024-10-05 15:58:20 -04:00
parent edbf36083d
commit 55314e2662
5 changed files with 10 additions and 11 deletions

View File

@@ -17,6 +17,7 @@ depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
op.execute('CREATE EXTENSION IF NOT EXISTS btree_gist')
op.create_index(op.f('ix_token_name'), 'token', ['name'], unique=False, postgresql_using='gist')
op.create_index(op.f('ix_token_approved'), 'token', ['approved'], unique=False)
op.create_index(op.f('ix_token_symbol'), 'token', ['symbol'], unique=False)