blob: 5e3d891ad2f71cc9880d203d2bcc2832872f139c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
from archaeological_files.models import FileByDepartment
class Migration(migrations.Migration):
dependencies = [
('archaeological_files', '0002_auto_20170414_2123'),
]
operations = [
migrations.RunSQL(FileByDepartment.CREATE_SQL)
]
|