salix/db/export-data.sh

88 lines
1.2 KiB
Bash
Raw Normal View History

#!/bin/bash
2019-04-03 08:29:05 +00:00
DUMPED_FILE="dump/dumpedFixtures.sql"
INI_FILE="config.production.ini"
dump_tables() {
SCHEMA=$1
echo "USE \`$SCHEMA\`;" >> "$DUMPED_FILE"
2019-11-26 13:15:43 +00:00
mysqldump --defaults-file="$INI_FILE" --no-create-info --skip-triggers $@ >> "$DUMPED_FILE"
2019-04-03 08:29:05 +00:00
}
echo "" > "$DUMPED_FILE"
2019-04-03 09:21:54 +00:00
TABLES=(
util
config
)
dump_tables ${TABLES[@]}
2019-04-03 08:29:05 +00:00
TABLES=(
account
role
roleInherit
roleRole
)
dump_tables ${TABLES[@]}
TABLES=(
salix
ACL
fieldAcl
)
dump_tables ${TABLES[@]}
TABLES=(
vn
alertLevel
bookingPlanner
cplusInvoiceType477
cplusSubjectOp
cplusTaxBreak
pgc
tag
claimResponsible
claimReason
claimRedelivery
claimResult
ticketUpdateAction
2019-11-06 09:56:18 +00:00
state
2019-11-06 09:55:04 +00:00
sample
2019-04-03 08:29:05 +00:00
department
)
dump_tables ${TABLES[@]}
2019-11-26 13:15:43 +00:00
2019-04-03 08:29:05 +00:00
TABLES=(
bi
tarifa_componentes
tarifa_componentes_series
)
dump_tables ${TABLES[@]}
TABLES=(
cache
cache
)
dump_tables ${TABLES[@]}
TABLES=(
hedera
imageCollection
2019-04-03 08:29:05 +00:00
tpvError
tpvResponse
)
dump_tables ${TABLES[@]}
TABLES=(
postgresql
calendar_labour_type
labour_agreement
media_type
professional_category
profile_type
workcenter
)
dump_tables ${TABLES[@]}