refactor: Increase size for mobile config singelton value (#34288)

Co-authored-by: Abdul  Moeez Zahid <abdul.moeez@025907584957.2tor.net>
This commit is contained in:
Moeez Zahid
2024-02-27 19:30:21 +05:00
committed by GitHub
parent 383f5d636a
commit fca51419f8
2 changed files with 19 additions and 1 deletions

View File

@@ -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),
),
]

View File

@@ -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"