diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-03 19:43:34 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-03 20:14:17 +0100 |
commit | 3b79423194ba5b054ca66190c5b8b643ad00a7a1 (patch) | |
tree | efebb8200d651df3e691db17440f45628f4a6ca5 /Makefile.example | |
parent | 347c7376988deb005da4a2d6b393f19391969210 (diff) | |
download | Ishtar-3b79423194ba5b054ca66190c5b8b643ad00a7a1.tar.bz2 Ishtar-3b79423194ba5b054ca66190c5b8b643ad00a7a1.zip |
Fixtures: add spatial ref system
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.example b/Makefile.example index d251155ed..516daadc5 100644 --- a/Makefile.example +++ b/Makefile.example @@ -166,7 +166,7 @@ fixtures_auth: auth.group \ > '../fixtures/initial_data-auth-'$(default_data)'.json' -fixtures_common: fixtures_common_importers fixtures_common_towns +fixtures_common: fixtures_common_importers fixtures_common_towns fixtures_spatialrefsystem cd $(project); $(PYTHON) ./manage.py dumpdata --indent 4 \ ishtar_common.authortype \ ishtar_common.persontype \ @@ -195,6 +195,11 @@ fixtures_common_towns: ishtar_common.town \ > '../ishtar_common/fixtures/initial_towns-'$(default_data)'.json' +fixtures_spatialrefsystem: + cd $(project); $(PYTHON) ./manage.py dumpdata --indent 4 \ + ishtar_common.SpatialReferenceSystem \ + > '../ishtar_common/fixtures/initial_spatialrefsystem-'$(default_data)'.json' + fixtures_operations: cd $(project); $(PYTHON) ./manage.py dumpdata --indent 4 \ archaeological_operations.acttype \ |