From f4b0755d5c5334cf54be4924a93d90b9c385e92b Mon Sep 17 00:00:00 2001 From: Rodolfo Berrios <20590102+rodber@users.noreply.github.com> Date: Tue, 2 Dec 2025 11:55:33 -0300 Subject: [PATCH] skip generated cols --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 148a4f2..4ccfbfd 100644 --- a/Makefile +++ b/Makefile @@ -283,7 +283,7 @@ database-backup: feedback--short sh -c 'if command -v mysqldump >/dev/null 2>&1; then \ mysqldump -u root -ppassword chevereto; \ elif command -v mariadb-dump >/dev/null 2>&1; then \ - mariadb-dump -u root -ppassword chevereto; \ + mariadb-dump --skip-generated-columns -u root -ppassword chevereto; \ else \ echo "No dump tool found in container" >&2; exit 1; \ fi' \