123456789101112131415161718192021222324252627282930 |
- """edit_atmo_company
- Revision ID: 781090b305e2
- Revises: 81b859325353
- Create Date: 2025-07-17 15:44:55.190366
- """
- from alembic import op
- import sqlalchemy as sa
- # revision identifiers, used by Alembic.
- revision = '781090b305e2'
- down_revision = '81b859325353'
- branch_labels = None
- depends_on = None
- def upgrade():
- """升级数据库到当前版本"""
- # ### commands auto generated by Alembic - please adjust! ###
- pass
- # ### end Alembic commands ###
- def downgrade():
- """将数据库降级到上一版本"""
- # ### commands auto generated by Alembic - please adjust! ###
- pass
- # ### end Alembic commands ###
|