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