Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dify
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ai-tech
dify
Commits
e19ad023
Unverified
Commit
e19ad023
authored
Jan 21, 2024
by
crazywoola
Committed by
GitHub
Jan 21, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix/2102 long dify app description throws backend exception (#2112)
parent
0695f08f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
1 deletion
+39
-1
89c7899ca936_.py
api/migrations/versions/89c7899ca936_.py
+38
-0
model.py
api/models/model.py
+1
-1
No files found.
api/migrations/versions/89c7899ca936_.py
0 → 100644
View file @
e19ad023
"""empty message
Revision ID: 89c7899ca936
Revises: 187385f442fc
Create Date: 2024-01-21 04:10:23.192853
"""
from
alembic
import
op
import
sqlalchemy
as
sa
# revision identifiers, used by Alembic.
revision
=
'89c7899ca936'
down_revision
=
'187385f442fc'
branch_labels
=
None
depends_on
=
None
def
upgrade
():
# ### commands auto generated by Alembic - please adjust! ###
with
op
.
batch_alter_table
(
'sites'
,
schema
=
None
)
as
batch_op
:
batch_op
.
alter_column
(
'description'
,
existing_type
=
sa
.
VARCHAR
(
length
=
255
),
type_
=
sa
.
Text
(),
existing_nullable
=
True
)
# ### end Alembic commands ###
def
downgrade
():
# ### commands auto generated by Alembic - please adjust! ###
with
op
.
batch_alter_table
(
'sites'
,
schema
=
None
)
as
batch_op
:
batch_op
.
alter_column
(
'description'
,
existing_type
=
sa
.
Text
(),
type_
=
sa
.
VARCHAR
(
length
=
255
),
existing_nullable
=
True
)
# ### end Alembic commands ###
api/models/model.py
View file @
e19ad023
...
...
@@ -792,7 +792,7 @@ class Site(db.Model):
title
=
db
.
Column
(
db
.
String
(
255
),
nullable
=
False
)
icon
=
db
.
Column
(
db
.
String
(
255
))
icon_background
=
db
.
Column
(
db
.
String
(
255
))
description
=
db
.
Column
(
db
.
String
(
255
)
)
description
=
db
.
Column
(
db
.
Text
)
default_language
=
db
.
Column
(
db
.
String
(
255
),
nullable
=
False
)
copyright
=
db
.
Column
(
db
.
String
(
255
))
privacy_policy
=
db
.
Column
(
db
.
String
(
255
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment