kitloong / laravel-migrations-generator

Laravel Migrations Generator: Automatically generate your migrations from an existing database schema.
MIT License
2.43k stars 269 forks source link

Cannot generate migration for MariaDB connection #218

Closed mocfaisal closed 3 months ago

mocfaisal commented 3 months ago

Describe the bug I can't generate migration for MariaDB connection from current database

To Reproduce Steps to reproduce the behavior:

  1. Run php artisan migrate:generate
  2. Run php artisan migrate:generate --connection="mariadb"
  3. See error

Expected behavior Can generate migration for MariaDB connection

Screenshots image

Details (please complete the following information):

Additional context because generating for mariadb connection error, i tried to generate for mysql connection and success

kitloong commented 3 months ago

Hi @mocfaisal, thanks for the report.

I have add the missing mariadb driver to compatible with Laravel v11, released with tag 7.0.3.

mocfaisal commented 3 months ago

@kitloong Thanks 🔥