mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 06:17:17 +00:00
21 lines
440 B
Python
21 lines
440 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
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,
|
|
),
|
|
]
|