mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-18 15:41:12 +00:00
formatting
This commit is contained in:
parent
5a0723cde7
commit
1b5c71c7b1
1 changed files with 8 additions and 6 deletions
|
@ -6,18 +6,20 @@ from django.db import migrations, models
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('bookwyrm', '0053_auto_20210319_1913'),
|
("bookwyrm", "0053_auto_20210319_1913"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='importitem',
|
model_name="importitem",
|
||||||
name='data',
|
name="data",
|
||||||
field=models.JSONField(),
|
field=models.JSONField(),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='user',
|
model_name="user",
|
||||||
name='first_name',
|
name="first_name",
|
||||||
field=models.CharField(blank=True, max_length=150, verbose_name='first name'),
|
field=models.CharField(
|
||||||
|
blank=True, max_length=150, verbose_name="first name"
|
||||||
|
),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue