1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/n8n_ynh.git synced 2024-09-03 19:55:52 +02:00

Block upgrade when migrating sqlite to mariadb

This commit is contained in:
Florent 2022-03-31 13:59:31 +02:00 committed by Florent F
parent 1abe7ec7ef
commit 33335b1471

View file

@ -65,6 +65,17 @@ ynh_script_progression --message="Making sure dedicated system user exists..." -
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
if ynh_compare_current_package_version --comparison le --version 0.169.0~ynh1
then
ynh_die --message="Upgrade from version 0.169.0~ynh1 is not possible is not possible yet because data migration is not supported. Please let us know you encounter this message in this issue: https://github.com/YunoHost-Apps/n8n_ynh/issues/18"
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================