mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
9622fbb62f
Co-authored-by: liuzhenghua-jk <liuzhenghua-jk@360shuke.com> Co-authored-by: takatost <takatost@gmail.com>
34 lines
844 B
Python
34 lines
844 B
Python
"""'add_max_active_requests'
|
|
|
|
Revision ID: 408176b91ad3
|
|
Revises: 7e6a8693e07a
|
|
Create Date: 2024-07-04 09:25:14.029023
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
import models as models
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '408176b91ad3'
|
|
down_revision = '161cadc1af8d'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('apps', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('max_active_requests', sa.Integer(), nullable=True))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('apps', schema=None) as batch_op:
|
|
batch_op.drop_column('max_active_requests')
|
|
|
|
# ### end Alembic commands ###
|