-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unnecessary SQLite Migrations Run at Installation #349
Comments
Can you share the output of |
$ composer global show Changed current directory to C:/Users/Nexgen/AppData/Roaming/Composer |
Update |
During the setup of a new Laravel application, SQLite migrations are executed automatically, even before selecting a specific database driver. This may be redundant for users who do not intend to use SQLite.
The current behaviour initiates SQLite migrations prematurely, potentially causing unnecessary database operations and migrations.
Consider delaying SQLite migrations until a database driver is explicitly selected or configured during the setup process. This adjustment could improve the setup experience, especially for users focusing on alternative databases from the start.
The text was updated successfully, but these errors were encountered: