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
Can you explain this issue a little more in detail?
What is the actual problem or the difference in MySQL 8 with the database name?
I think we cannot just change the database name for all users to lower-case.
hey,
MySqlSchemaAdapter has troubles with mysql8.0.
My original idea to config PDO::ATTR_CASE as lowerkey is not an option as phinx itself depends too heavily on it being natural.
Best idea so far is
public function getSchema($tableNames = null): array
to run
$result['database'] = array_change_key_case($this->getDatabaseSchemata($this->dbName),CASE_LOWER);
open for other ideas
The problem does not show up on a fresh schema.php generated from scratch as getTableMigrationNewDatabase $this->array->neq on both null is false.
Thx
The text was updated successfully, but these errors were encountered: