mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 15:45:23 +00:00
change choices size from 50 to 70
This commit is contained in:
parent
372ba5a0f2
commit
82f5fbf159
2 changed files with 19 additions and 1 deletions
18
appsettings/migrations/0005_auto_20200911_1233.py
Normal file
18
appsettings/migrations/0005_auto_20200911_1233.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 2.2.14 on 2020-09-11 12:33
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('appsettings', '0004_auto_20200716_0637'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='appsettings',
|
||||||
|
name='choices',
|
||||||
|
field=models.CharField(max_length=70, verbose_name='choices'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -9,5 +9,5 @@ class AppSettings(models.Model):
|
||||||
name = models.CharField(_('name'), max_length=25, null=False)
|
name = models.CharField(_('name'), max_length=25, null=False)
|
||||||
key = models.CharField(_('key'), db_index=True, max_length=50, unique=True)
|
key = models.CharField(_('key'), db_index=True, max_length=50, unique=True)
|
||||||
value = models.CharField(_('value'), max_length=25)
|
value = models.CharField(_('value'), max_length=25)
|
||||||
choices = models.CharField(_('choices'), max_length=50)
|
choices = models.CharField(_('choices'), max_length=70)
|
||||||
description = models.CharField(_('description'), max_length=100, null=True)
|
description = models.CharField(_('description'), max_length=100, null=True)
|
||||||
|
|
Loading…
Reference in a new issue