Files
mayan-edms/mayan/apps/documents/migrations/0007_remove_documentpage_page_label.py
2015-07-10 17:19:36 -04:00

19 lines
369 B
Python

# -*- coding: utf-8 -*-
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',
),
]