Split the .model module from the document app into separate modules by purpose. The new modules containing the documents app models are: document_models.py, document_page_models.py, document_type_models.py, and document_version_models.py. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
7 lines
232 B
Python
7 lines
232 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from .document_models import * # NOQA
|
|
from .document_page_models import * # NOQA
|
|
from .document_type_models import * # NOQA
|
|
from .document_version_models import * # NOQA
|