Maintenance required
We paused the app until the database schema catches up.
Database migrations are pending. Running them now keeps data in sync for everyone who signs in.
From the project root on your server, run the migration tool:
php bin/migrate.php
When you run the migration tool, it will:
- Ensure the schema_migrations ledger exists so future runs know what’s already applied.
- Compare every SQL file in sql/migrations with stored checksums to find scripts that haven’t run yet.
- Execute each pending migration inside a database transaction so any errors roll the changes back.
- Record the migration name, checksum, and timestamp once it succeeds, letting safe re-runs skip work.