Upgrading

Upgrading SupportKit

Before Upgrading

  1. Backup your database
  2. Backup your .env file
  3. Backup any custom files

Upgrade Steps

# Enable maintenance mode
php artisan down

# Backup database
mysqldump -u user -p supportkit > backup.sql

# Download and extract new version
# Replace files (except .env)

# Run migrations
php artisan migrate --force

# Clear caches
php artisan cache:clear
php artisan config:clear
php artisan view:clear

# Rebuild assets
npm install
npm run build

# Disable maintenance mode
php artisan up
Important: Always read the release notes before upgrading to check for breaking changes.