fix postfix compatiblity
sql is only a standard, ...
This commit is contained in:
parent
0a1da35d84
commit
bd7d8e4398
2 changed files with 4 additions and 4 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue