Update column types and bump version (#1653)
* Add logger import in script.py.mako * Fix error handling during upgrade in alembic scripts * Bump version to 0.6.14 in pyproject.toml * Update column types in credential and api_key models * Bump version to 0.6.15 in pyproject.toml
This commit is contained in:
parent
537cf93493
commit
243a4e77f0
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ def upgrade() -> None:
|
|||
sa.Column("provider", sqlmodel.sql.sqltypes.AutoString(), nullable=True),
|
||||
sa.Column("user_id", sqlmodel.sql.sqltypes.GUID(), nullable=False),
|
||||
sa.Column("id", sqlmodel.sql.sqltypes.GUID(), nullable=False),
|
||||
sa.Column("created_at", sa.DateTime(), nullable=False),
|
||||
sa.Column("created_at", sqlmodel.sql.sqltypes.DateTime(), nullable=False),
|
||||
sa.Column("updated_at", sa.DateTime(), nullable=True),
|
||||
sa.PrimaryKeyConstraint("id"),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue