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