Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
AStA
Digitaler 3G-Nachweis
Commits
5587c8a1
Commit
5587c8a1
authored
Jan 20, 2022
by
Leon Tappe
🔥
Browse files
change value to TEXT to allow longer strings
parent
7b5fe38f
Changes
1
Hide whitespace changes
Inline
Side-by-side
backend/website/models.py
View file @
5587c8a1
...
...
@@ -61,7 +61,7 @@ class Color(db.Model):
class
Setting
(
db
.
Model
):
id
=
db
.
Column
(
db
.
Integer
,
primary_key
=
True
)
key
=
db
.
Column
(
db
.
String
(
50
),
unique
=
True
)
value
=
db
.
Column
(
db
.
String
(
50
)
,
unique
=
False
)
value
=
db
.
Column
(
db
.
Text
,
unique
=
False
)
class
OAuth2Client
(
db
.
Model
,
OAuth2ClientMixin
):
...
...
Write
Preview
Supports
Markdown
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