mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 15:13:33 +00:00
edit choices field length
This commit is contained in:
@@ -18,7 +18,7 @@ class Migration(migrations.Migration):
|
||||
('name', models.CharField(max_length=25)),
|
||||
('key', models.CharField(db_index=True, max_length=50, unique=True)),
|
||||
('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)),
|
||||
],
|
||||
),
|
||||
|
||||
@@ -13,7 +13,7 @@ class Migration(migrations.Migration):
|
||||
migrations.AlterField(
|
||||
model_name='appsettings',
|
||||
name='choices',
|
||||
field=models.CharField(max_length=50, verbose_name='choices'),
|
||||
field=models.CharField(max_length=70, verbose_name='choices'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='appsettings',
|
||||
|
||||
Reference in New Issue
Block a user