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
First of all, pgsql adapter was hard locked for index definition creation. Using pg you should not have 'indexes' block. But you got that definition array just because your adapter in config file was Pascal case, so adapter check failed and indexes block was generated.
Made adapter check case insensitive and fixed indexes type definition.
Another point - in 'indexes' definition you cant have Primary index. That index is defined via Column definition by using option 'primary' => true.
Table company
After runing migration
The text was updated successfully, but these errors were encountered: