1
0
Fork 0

Allow page numbers to be text, instead of integers.

Fixes: #2640
This commit is contained in:
Wesley Aptekar-Cassels 2024-01-04 18:58:12 -05:00
parent 597378bb78
commit 6cd2c91135
4 changed files with 36 additions and 11 deletions

View file

@ -0,0 +1,23 @@
# 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),
),
]