diff options
Diffstat (limited to 'archaeological_finds/migrations/0003_views.py')
-rw-r--r-- | archaeological_finds/migrations/0003_views.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/archaeological_finds/migrations/0003_views.py b/archaeological_finds/migrations/0003_views.py deleted file mode 100644 index d405a35e1..000000000 --- a/archaeological_finds/migrations/0003_views.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import migrations -from archaeological_finds.models import FirstBaseFindView, FindTreatments, \ - FindDownstreamTreatments, FindUpstreamTreatments, FBulkView, BFBulkView - - -class Migration(migrations.Migration): - - dependencies = [ - ('archaeological_finds', '0002_auto_20170414_2123'), - ] - - operations = [ - migrations.RunSQL(FindUpstreamTreatments.CREATE_SQL + - FindDownstreamTreatments.CREATE_SQL + - FindTreatments.CREATE_SQL + - FirstBaseFindView.CREATE_SQL + - FBulkView.CREATE_SQL + - BFBulkView.CREATE_SQL) - ] |