mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
e23461c837
Some checks failed
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
54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
"""increase max model_name length
|
|
|
|
Revision ID: eeb2e349e6ac
|
|
Revises: 53bf8af60645
|
|
Create Date: 2024-07-26 12:02:00.750358
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
import models as models
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'eeb2e349e6ac'
|
|
down_revision = '53bf8af60645'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('dataset_collection_bindings', schema=None) as batch_op:
|
|
batch_op.alter_column('model_name',
|
|
existing_type=sa.VARCHAR(length=40),
|
|
type_=sa.String(length=255),
|
|
existing_nullable=False)
|
|
|
|
with op.batch_alter_table('embeddings', schema=None) as batch_op:
|
|
batch_op.alter_column('model_name',
|
|
existing_type=sa.VARCHAR(length=40),
|
|
type_=sa.String(length=255),
|
|
existing_nullable=False,
|
|
existing_server_default=sa.text("'text-embedding-ada-002'::character varying"))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('embeddings', schema=None) as batch_op:
|
|
batch_op.alter_column('model_name',
|
|
existing_type=sa.String(length=255),
|
|
type_=sa.VARCHAR(length=40),
|
|
existing_nullable=False,
|
|
existing_server_default=sa.text("'text-embedding-ada-002'::character varying"))
|
|
|
|
with op.batch_alter_table('dataset_collection_bindings', schema=None) as batch_op:
|
|
batch_op.alter_column('model_name',
|
|
existing_type=sa.String(length=255),
|
|
type_=sa.VARCHAR(length=40),
|
|
existing_nullable=False)
|
|
|
|
# ### end Alembic commands ###
|