Remove outdated user fields

This commit is contained in:
Mouse Reeve
2020-11-30 10:32:54 -08:00
parent 74a58e5267
commit 8bc0a57bd4
7 changed files with 96 additions and 33 deletions

View File

@ -0,0 +1,24 @@
# Generated by Django 3.0.7 on 2020-11-30 19:39
import bookwyrm.models.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('bookwyrm', '0018_auto_20201130_1832'),
]
operations = [
migrations.AlterField(
model_name='user',
name='name',
field=bookwyrm.models.fields.CharField(default='', max_length=100),
),
migrations.AlterField(
model_name='user',
name='summary',
field=bookwyrm.models.fields.TextField(default=''),
),
]