mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
642842d61b
Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
33 lines
849 B
Python
33 lines
849 B
Python
"""add_app_config_retriever_resource
|
|
|
|
Revision ID: 77e83833755c
|
|
Revises: 6dcb43972bdc
|
|
Create Date: 2023-09-06 17:26:40.311927
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '77e83833755c'
|
|
down_revision = '6dcb43972bdc'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('app_model_configs', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('retriever_resource', sa.Text(), nullable=True))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('app_model_configs', schema=None) as batch_op:
|
|
batch_op.drop_column('retriever_resource')
|
|
|
|
# ### end Alembic commands ###
|