bunch of changes
This commit is contained in:
28
migrations/versions/1c7cef84b4ae_auto.py
Normal file
28
migrations/versions/1c7cef84b4ae_auto.py
Normal file
@ -0,0 +1,28 @@
|
||||
"""auto
|
||||
|
||||
Revision ID: 1c7cef84b4ae
|
||||
Revises: 26803929dc3e
|
||||
Create Date: 2025-06-04 22:07:43.375613
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '1c7cef84b4ae'
|
||||
down_revision = '26803929dc3e'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('plant', sa.Column('is_verified', sa.Boolean(), nullable=False))
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('plant', 'is_verified')
|
||||
# ### end Alembic commands ###
|
Reference in New Issue
Block a user