diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-18 22:59:43 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-18 22:59:43 +0200 |
commit | e886e8a1a79880bed9cd0ec480a0658ae93ad400 (patch) | |
tree | e6da7c67ae8c7a624cbb49399ae9f8b45be8ea30 /archaeological_context_records/migrations | |
parent | c5571208a3d7a50d24226132d6ff77f8edd03921 (diff) | |
download | Ishtar-e886e8a1a79880bed9cd0ec480a0658ae93ad400.tar.bz2 Ishtar-e886e8a1a79880bed9cd0ec480a0658ae93ad400.zip |
New migrations: add views
Diffstat (limited to 'archaeological_context_records/migrations')
-rw-r--r-- | archaeological_context_records/migrations/0004_views.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0004_views.py b/archaeological_context_records/migrations/0004_views.py new file mode 100644 index 000000000..d34b9e62b --- /dev/null +++ b/archaeological_context_records/migrations/0004_views.py @@ -0,0 +1,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) + ] |