moviewyrm/bookwyrm/migrations/0110_auto_20211015_1734.py

24 lines
563 B
Python
Raw Normal View History

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