# Migrations Applied manually in order: ```bash psql "$DATABASE_URL" -f migrations/001_init.sql # schema psql "$DATABASE_URL" -f migrations/002_migration_history.sql # tracking ``` Check applied: ```sql SELECT * FROM migration_history ORDER BY id; ```