I'm using CakePHP 3
.
I have different sources to use and each having a different users
table.
In short, I'm creating a master panel to manage users from all other applications.
When I bake users
table from a different connection
bin/cake bake model users -c my_con
It asks to override earlier baked users
model.
How can I bake table with the same name from the different source? maybe under a different namespace.
And it is impossible to get which index is representing which column.
How can I map the data with the column name of the table?