Articles Tagged with CakePHP Migrations Plugin
-
Ecrit le dans Uncategorized,
Viewed 0 time 0 Comment -
CakePHP Migrations plugin: easily version and deploy whole applications
Ecrit le 2010-02-05 11:34:00 dans Uncategorized,
Viewed 23941 times 0 CommentsThis article is a quick introduction to the Migrations plugin, open sourced a few weeks ago by our company. You will see how simple it is to use the plugin and what you could do with it. I hope this article will show you the benefits of using migrations in your CakePHP applications and make you give it a try right after the reading! Here is a one-sentence description of the plugin: the Migrations plugin allows developers to easily version and automate the creation / update process of any database schema and application data from the command line. For information, CakeDC uses this plugin on its project since several years to make team collaboration and deployment easier. The plugin has been entirely rewritten a few months ago and fully tested (code coverage >95% as always at CakeDC) before being open sourced under the MI... -
Quick start with Migrations plugin
Ecrit le 2010-03-01 10:25:00 dans Uncategorized,
Viewed 16887 times 0 CommentsIn a previous post I gave an overview of the CakePHP Migrations plugin, what it does and why you should use it in your applications. This article will explain how to use it in a practical way. We are going to bake a simple blog application recipe application and see how migrations are integrated in the development process. Since we recently moved all our open source projects on http://cakedc.github.com/, this sample application source code is also available there: Sample Migrations Application - Github (it is a CakePHP 1.3 application). Ready? Bake a new application and add the migrations plugin First of...