fix postfix compatiblity

sql is only a standard, ...
This commit is contained in:
tuxcoder 2023-12-25 18:57:27 +01:00
parent 0a1da35d84
commit bd7d8e4398
2 changed files with 4 additions and 4 deletions

View file

@ -21,8 +21,8 @@ def upgrade():
op.create_table('passkey_credential',
sa.Column('id', sa.Integer(), autoincrement=True, nullable=False),
sa.Column('user_id', sa.Uuid(), nullable=False),
sa.Column('credential_id', sa.BINARY(), nullable=False),
sa.Column('credential_public_key', sa.BINARY(), nullable=False),
sa.Column('credential_id', sa.LargeBinary(), nullable=False),
sa.Column('credential_public_key', sa.LargeBinary(), nullable=False),
sa.Column('name', sa.String(length=250), nullable=False),
sa.Column('last_used', sa.DateTime(), nullable=True),
sa.Column('sign_count', sa.Integer(), nullable=False),