瀏覽代碼

HUE-3287 [core] Django 1.11 upgrade
- This change actually fixes Django migrations. In the Makefile, at this place Hue's APPS are not available, commenting out django makemigrations command

Prakash Ranade 7 年之前
父節點
當前提交
c4f3ea7d0e
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      desktop/Makefile

+ 3 - 3
desktop/Makefile

@@ -98,9 +98,9 @@ $(DESKTOP_DB): $(BLD_DIR_BIN)/hue
 	  echo 'Removing old database (DESKTOP_DEBUG is set)' ; \
 	  rm -f $@ ; \
 	fi
-	@echo "--- Syncing/updating database at $@"
-	@$(ENV_PYTHON) $(BLD_DIR_BIN)/hue makemigrations --noinput
-	@$(ENV_PYTHON) $(BLD_DIR_BIN)/hue migrate
+	#@echo "--- Syncing/updating database at $@"
+	#@$(ENV_PYTHON) $(BLD_DIR_BIN)/hue makemigrations --noinput
+	#@$(ENV_PYTHON) $(BLD_DIR_BIN)/hue migrate
 
 # Targets that simply recurse into all of the applications
 ENV_INSTALL_TARGETS := $(APPS:%=.recursive-env-install/%)