Files
mayan-edms/mayan/apps/documents/migrations/0007_remove_documentpage_page_label.py
Roberto Rosario 4baeb6ce7e Code cleanups
PEP8 cleanups. Add keyword arguments.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2019-05-21 00:56:22 -04:00

18 lines
345 B
Python

from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('documents', '0006_remove_documentpage_content_old'),
]
operations = [
migrations.RemoveField(
model_name='documentpage',
name='page_label',
),
]