You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
348 B
14 lines
348 B
#!/bin/sh
|
|
|
|
set -Eeuo pipefail
|
|
|
|
# Disable maintenance mode
|
|
echo "Disabling maintenance mode..."
|
|
php occ maintenance:mode --off
|
|
|
|
# Run database optimizations
|
|
echo "Adding missing database indices..."
|
|
php occ db:add-missing-indices || true
|
|
|
|
echo "Converting database columns to big int..."
|
|
php occ db:convert-filecache-bigint --no-interaction || true
|
|
|