1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-25 23:55:24 +00:00

edit choices field length

This commit is contained in:
sergey kilin 2020-09-21 16:22:44 +04:00
parent 2fe1f1c73a
commit 3c72bedd7a
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ class Migration(migrations.Migration):
('name', models.CharField(max_length=25)), ('name', models.CharField(max_length=25)),
('key', models.CharField(db_index=True, max_length=50, unique=True)), ('key', models.CharField(db_index=True, max_length=50, unique=True)),
('value', models.CharField(max_length=25)), ('value', models.CharField(max_length=25)),
('choices', models.CharField(max_length=50)), ('choices', models.CharField(max_length=70)),
('description', models.CharField(max_length=100, null=True)), ('description', models.CharField(max_length=100, null=True)),
], ],
), ),

View file

@ -13,7 +13,7 @@ class Migration(migrations.Migration):
migrations.AlterField( migrations.AlterField(
model_name='appsettings', model_name='appsettings',
name='choices', name='choices',
field=models.CharField(max_length=50, verbose_name='choices'), field=models.CharField(max_length=70, verbose_name='choices'),
), ),
migrations.AlterField( migrations.AlterField(
model_name='appsettings', model_name='appsettings',