Uses correct model field for raw values

This commit is contained in:
Mouse Reeve
2021-10-15 10:36:46 -07:00
parent 61a0b50b91
commit bd0e4abd56
2 changed files with 6 additions and 7 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 3.2.5 on 2021-10-15 17:34
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0109_status_edited_date"),
]
operations = [
migrations.AddField(
model_name="quotation",
name="raw_quote",
field=models.TextField(blank=True, null=True),
),
migrations.AddField(
model_name="status",
name="raw_content",
field=models.TextField(blank=True, null=True),
),
]