Wiki Nav

#cake schema generate Just for future reference -- had a few speedbumps getting the schemas generated the first time. I think this is due to my understanding of the tools -- maybe you use them differently, I don't know. I renamed the database configs and prefixed the tables for the users plugin. I removed any apparent users_plugin related tables from the core bakery schema file, and then condensed the two (users and messaging) schemas to a single users plugin schema. Here's how I believe it should go.cake sch Once you've pulled a clone in, and assuming you have your cake core connected and can use the cake console app, run the following (assumes you're inside the bakery app folder): ### generate the core bakery tables ```$ cake schema run create``` ### generate the users plugin related tables ```$ cake schema run create UsersPlugin -connection users_plugin -path ./plugins/users/config/sql/``` [Based on modifications to this commit](http://thechaw.com/forks/pointlessjon/bakery/commits/view/1bb629fbb57afe46219e9152268b462d6f722a0e)