Skip to content

Commit

Permalink
refactor: Increase size for mobile config singelton value (openedx#34288
Browse files Browse the repository at this point in the history
)

Co-authored-by: Abdul  Moeez Zahid <[email protected]>
  • Loading branch information
2 people authored and OmarIthawi committed Jul 25, 2024
1 parent 704af1a commit d653bf5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.10 on 2024-02-23 06:14

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mobile_api', '0004_mobileconfig'),
]

operations = [
migrations.AlterField(
model_name='mobileconfig',
name='value',
field=models.CharField(max_length=1000),
),
]
2 changes: 1 addition & 1 deletion lms/djangoapps/mobile_api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class MobileConfig(TimeStampedModel):
.. no_pii:
"""
name = models.CharField(max_length=255)
value = models.CharField(max_length=255)
value = models.CharField(max_length=1000)

class Meta:
app_label = "mobile_api"
Expand Down

0 comments on commit d653bf5

Please sign in to comment.