From 962894cc349d50f295c3e373a4a8805032d8bc8a Mon Sep 17 00:00:00 2001 From: Jake Runzer Date: Wed, 8 Nov 2023 00:38:25 -0500 Subject: [PATCH] migrate mysql routines, triggers, and events --- migrate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrate.sh b/migrate.sh index 02628af..6aa9152 100755 --- a/migrate.sh +++ b/migrate.sh @@ -94,7 +94,7 @@ fi section "Dumping database from PLUGIN_URL" dump_file="plugin_dump.sql" -mysqldump -u $PLUGIN_USER -p$PLUGIN_PASSWORD -h $PLUGIN_HOST -P $PLUGIN_PORT $PLUGIN_DB > $dump_file +mysqldump -u $PLUGIN_USER -p$PLUGIN_PASSWORD -h $PLUGIN_HOST -P $PLUGIN_PORT --routines --triggers --events --all-databases > $dump_file write_ok "Successfully saved dump to $dump_file"