You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
684 B
26 lines
684 B
# Generated by Django 3.2.7 on 2025-03-21 01:19
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0002_alter_bookcollection_title'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='book',
|
|
name='author',
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='book',
|
|
name='download_count',
|
|
field=models.PositiveBigIntegerField(default=0, verbose_name='view count'),
|
|
),
|
|
migrations.DeleteModel(
|
|
name='BookDownload',
|
|
),
|
|
]
|