mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 03:30:10 +00:00
27 lines
655 B
Python
27 lines
655 B
Python
"""oss sync alembic
|
|
|
|
Revision ID: 39e16cf92225
|
|
Revises: 7581811d57b1
|
|
Create Date: 2025-11-06 09:14:11.912223+00:00
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "39e16cf92225"
|
|
down_revision: Union[str, None] = "7581811d57b1"
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|