mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-05 06:48:43 +00:00
6cd2c91135
Fixes: #2640
23 lines
571 B
Python
23 lines
571 B
Python
# Generated by Django 3.2.23 on 2024-01-04 23:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookwyrm", "0191_merge_20240102_0326"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="quotation",
|
|
name="endposition",
|
|
field=models.TextField(blank=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="quotation",
|
|
name="position",
|
|
field=models.TextField(blank=True, null=True),
|
|
),
|
|
]
|