forked from langgenius/dify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix/6615 40 varchar limit on model name (langgenius#6623)
- Loading branch information
1 parent
d9dce32
commit 0b9efa2
Showing
2 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
"""update model | ||
Revision ID: 53bf8af60645 | ||
Revises: 8e5588e6412e | ||
Create Date: 2024-07-24 08:06:55.291031 | ||
""" | ||
import sqlalchemy as sa | ||
from alembic import op | ||
|
||
import models as models | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '53bf8af60645' | ||
down_revision = '8e5588e6412e' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table('embeddings', schema=None) as batch_op: | ||
batch_op.alter_column('provider_name', | ||
existing_type=sa.VARCHAR(length=40), | ||
type_=sa.String(length=255), | ||
existing_nullable=False, | ||
existing_server_default=sa.text("''::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('provider_name', | ||
existing_type=sa.String(length=255), | ||
type_=sa.VARCHAR(length=40), | ||
existing_nullable=False, | ||
existing_server_default=sa.text("''::character varying")) | ||
|
||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters