diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-06-13 15:16:34 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-06-13 15:16:34 +0200 |
commit | 9e950721a1000b48c702802e157064076fed7962 (patch) | |
tree | dc69ed05d2f1ddb298ab02dea236aaa7724ff8ed | |
parent | 04be2c3f89867d2b8ae21ccb475066016bac487d (diff) | |
download | Ishtar-9e950721a1000b48c702802e157064076fed7962.tar.bz2 Ishtar-9e950721a1000b48c702802e157064076fed7962.zip |
Fix migration
-rw-r--r-- | archaeological_operations/migrations/0068_auto__chg_field_historicaloperation_code_patriarche__chg_field_operati.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/archaeological_operations/migrations/0068_auto__chg_field_historicaloperation_code_patriarche__chg_field_operati.py b/archaeological_operations/migrations/0068_auto__chg_field_historicaloperation_code_patriarche__chg_field_operati.py index a0a0cadb2..02ccdcd59 100644 --- a/archaeological_operations/migrations/0068_auto__chg_field_historicaloperation_code_patriarche__chg_field_operati.py +++ b/archaeological_operations/migrations/0068_auto__chg_field_historicaloperation_code_patriarche__chg_field_operati.py @@ -9,6 +9,11 @@ from archaeological_finds.models import BFBulkView, FBulkView, FirstBaseFindView class Migration(SchemaMigration): + depends_on = ( + ('archaeological_context_records', '0029_create_bulk_update_view.py'), + ('archaeological_finds', '0085_create_bulk_update_view.py'), + ) + def forwards(self, orm): for view in [FBulkView, BFBulkView, FirstBaseFindView, CRBulkView]: sql = view.DELETE_SQL |