Backend fixed and features
This commit is contained in:
@ -51,7 +51,7 @@ def upgrade() -> None:
|
||||
sa.Column('created_at', sa.DateTime(timezone=True), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=False),
|
||||
sa.Column('updated_at', sa.DateTime(timezone=True), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=True),
|
||||
sa.PrimaryKeyConstraint('id'),
|
||||
sa.UniqueConstraint('name')
|
||||
sa.UniqueConstraint('name', name="uq_client_name")
|
||||
)
|
||||
op.create_table('client_access_policy',
|
||||
sa.Column('id', sa.Uuid(), nullable=False),
|
||||
|
||||
Reference in New Issue
Block a user