You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quote database names in PostgreSQL and SQL Server adapters (#1002)
* Quote database names in PostgreSQL and SQL Server adapters
MySQL adapter properly quotes database names in createDatabase/dropDatabase
using quoteTableName(), but PostgreSQL and SQL Server did not.
- PostgreSQL: Use quoteSchemaName() for database name and quoteString() for charset
- SQL Server: Use quoteSchemaName() for database name and quoteString() for string comparisons
This ensures consistent identifier quoting across all database adapters.
* Fix docblock typos and copy-paste errors
- Fix @params typo to @param in BaseMigration.php foreignKey() and index() methods
- Fix copy-paste docblock errors in test seed files where "NumbersSeed seed" was
used for classes with different names
0 commit comments