diff options
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.example b/Makefile.example index 1609d1091..ffd3ea86a 100644 --- a/Makefile.example +++ b/Makefile.example @@ -103,7 +103,7 @@ migrations: generate_doc: cd $(project);\ - $(PYTHON) manage.py graph_models --pydot -g -I "ImporterModel,ImporterType,ImporterDefault,ImporterDefaultValues,ImporterColumn,Regexp,ImportTarget,FormaterType,Import" ishtar_common > /tmp/ishtar-imports.dot ;\ + $(PYTHON) manage.py graph_models --pydot -g -I "ImporterModel,ImporterType,ImporterDefault,ImporterDefaultValues,ImporterColumn,ValueFormater,Regexp,ImportTarget,FormaterType,Import" ishtar_common > /tmp/ishtar-imports.dot ;\ dot -Tpng /tmp/ishtar-imports.dot -o ../docs/source/_static/db-imports.png rm /tmp/ishtar-imports.dot cd $(project);\ @@ -139,6 +139,7 @@ fixtures_common_importers: ishtar_common.importermodel \ ishtar_common.importertype \ ishtar_common.regexp \ + ishtar_common.valueformater \ ishtar_common.importerdefault \ ishtar_common.importerdefaultvalues \ ishtar_common.importercolumn \ |