Uses correct model field for raw values
This commit is contained in:
@ -1,7 +1,6 @@
|
||||
# Generated by Django 3.2.5 on 2021-10-15 01:28
|
||||
# Generated by Django 3.2.5 on 2021-10-15 17:34
|
||||
|
||||
import bookwyrm.models.fields
|
||||
from django.db import migrations
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
@ -14,11 +13,11 @@ class Migration(migrations.Migration):
|
||||
migrations.AddField(
|
||||
model_name="quotation",
|
||||
name="raw_quote",
|
||||
field=bookwyrm.models.fields.HtmlField(blank=True, null=True),
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="status",
|
||||
name="raw_content",
|
||||
field=bookwyrm.models.fields.HtmlField(blank=True, null=True),
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user