mirror of
https://github.com/langgenius/dify.git
synced 2026-01-08 07:14:14 +00:00
Some checks failed
autofix.ci / autofix (push) Has been cancelled
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Has been cancelled
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Has been cancelled
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Has been cancelled
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Has been cancelled
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Has been cancelled
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Has been cancelled
Main CI Pipeline / Check Changed Files (push) Has been cancelled
Main CI Pipeline / API Tests (push) Has been cancelled
Main CI Pipeline / Web Tests (push) Has been cancelled
Main CI Pipeline / Style Check (push) Has been cancelled
Main CI Pipeline / VDB Tests (push) Has been cancelled
Main CI Pipeline / DB Migration Test (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Co-authored-by: -LAN- <laipz8200@outlook.com>
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
"""add advanced prompt templates
|
|
|
|
Revision ID: b3a09c049e8e
|
|
Revises: 2e9819ca5b28
|
|
Create Date: 2023-10-10 15:23:23.395420
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
import models.types
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'b3a09c049e8e'
|
|
down_revision = '2e9819ca5b28'
|
|
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('prompt_type', sa.String(length=255), nullable=False, server_default='simple'))
|
|
batch_op.add_column(sa.Column('chat_prompt_config', models.types.LongText(), nullable=True))
|
|
batch_op.add_column(sa.Column('completion_prompt_config', models.types.LongText(), nullable=True))
|
|
batch_op.add_column(sa.Column('dataset_configs', models.types.LongText(), 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('dataset_configs')
|
|
batch_op.drop_column('completion_prompt_config')
|
|
batch_op.drop_column('chat_prompt_config')
|
|
batch_op.drop_column('prompt_type')
|
|
|
|
# ### end Alembic commands ###
|