mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 22:27:19 +00:00
25 lines
572 B
Python
25 lines
572 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('comic', '0005_auto_20150625_1400'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='comicstatus',
|
|
name='last_read_page',
|
|
field=models.IntegerField(default=0),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='comicstatus',
|
|
name='unread',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|