CakePHP has a process (schema shell and files) for sharing database structure between developers. However, there is often need to share some data (e.g. default user groups) as well. How have you solved this?
|
feedback
|
|
You can use fixtures for this. fixtures are small sets of data that can be used for testing or developing purposes. There is an interesting article about this here: http://nuts-and-bolts-of-cakephp.com/tag/cake-fixtures/ There are also plugins which help with the whole db migration process though I didn't try them out yet you might find them interesting: | |||
feedback
|