Wheels Migration Generator When to Use This Skill Activate automatically when: - User requests to create a migration (e.g., "create posts table") - User wants to add/modify/remove columns - User needs to add indexes or foreign keys - User is changing database schema - User mentions: migration, database, table, column, index, schema 🚨 CRITICAL: Migration File Location Migrations MUST be in: NOT: or any other location After creating migration files, reload Wheels: Critical Anti-Patterns to Prevent ❌ ANTI-PATTERN 1: Wrong Migration Directory WRONG: CORRECT: ❌ ANTI-PATTERN 2: timestamps() Includ…