diff --git a/Makefile b/Makefile
index 1df932a0b72e7145b41ca71589701abbb7c86eeb..9d1130612acff5296b99c5fc8a4429f7f0d6ea4e 100644
--- a/Makefile
+++ b/Makefile
@@ -19,20 +19,15 @@ copy_files: Tasker_deploy
 	rsync -ru --info=PROGRESS2  --exclude="application/config" --exclude="news.md" --exclude="updates.md"  \
 \~dev_rating/ $(DST_PATH)
 
-# server deploy without fix
-release_no_fix: DB_deploy copy_files
+# server deploy without db fix and stored stuff update
+release_no_db: copy_files
 	sed -i 's/~dev_rating//g' $(DST_PATH)/.htaccess
 	sed -i 's/\/~dev_rating//g' $(DST_PATH)/application/bootstrap.php
 	sed -i 's/\/~dev_rating//g' $(DST_PATH)/static/js/config.js
 	chmod u=rwx,g=rx,o=r $(DST_PATH)/index.php
 
-
 # server deploy with fix
-release: DB_fix release_no_fix
-
-
-
-
+release: DB_update release_no_db
 
 # server deploy with dump load
 load_deploy: DB_deployTest copy_files