Migrate Validate Validate all pending database migrations for correctness, safety, and adherence to best practices. When to use Before applying migrations to catch issues early -- foreign key references to non-existent tables, missing rollback SQL, destructive operations without safeguards, and naming convention violations. Steps 1. Find pending migrations -- use to list all migration files, cross-reference with applied history via (or ) to identify pending ones. The tool family routes by namespace; does NOT (it routes by tier), so use here. 2. Parse SQL -- use to load each pending and file a…