#!/bin/sh

EXIT_STATUS=0

# Add changes.
git add -i

# Migrate database changes if needed
php artisan migrate

# Commit changes.
git commit
