mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 22:27:19 +00:00
* Adding black, isort, and flake8 to pytest * Applying black, flake8, and isort to codebase
16 lines
387 B
Python
16 lines
387 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("comic", "0003_comicbook_comicpage")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="comicbook", name="unread", field=models.BooleanField(default=True), preserve_default=False
|
|
)
|
|
]
|