PEP8 cleanups. Add keyword arguments. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
22 lines
492 B
Python
22 lines
492 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0008_auto_20150624_0520'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='document',
|
|
name='in_trash',
|
|
field=models.BooleanField(
|
|
default=False, verbose_name='In trash?', editable=False
|
|
),
|
|
preserve_default=True,
|
|
),
|
|
]
|