|
@@ -21,10 +21,10 @@ class Migration(migrations.Migration):
|
|
|
('order', models.IntegerField(default=0, db_index=True)),
|
|
|
('dry_value', models.TextField(null=True, blank=True)),
|
|
|
('default_value', models.TextField(null=True, blank=True)),
|
|
|
- ('python_type', models.CharField(default=b'string', max_length=255)),
|
|
|
+ ('python_type', models.CharField(default='string', max_length=255)),
|
|
|
('is_public', models.BooleanField(default=False)),
|
|
|
('is_lazy', models.BooleanField(default=False)),
|
|
|
- ('form_field', models.CharField(default=b'text', max_length=255)),
|
|
|
+ ('form_field', models.CharField(default='text', max_length=255)),
|
|
|
('pickled_field_extra', models.TextField(null=True, blank=True)),
|
|
|
],
|
|
|
options={
|