Preflight Checklist
Problem Description
When creating a migration using php artisan make:migration-tenant, the generated migration is expected to use the tenant database connection. However, the migration is created with the default connection (micropowermanager) instead.
This causes tenant-specific migrations to run against the wrong database unless manually updated.
Proposed Solution
Update the make:migration-tenant command to automatically set the $connection property in the generated migration file to tenant.
Alternatives Considered
N/A
Additional Information
No response