Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

PHPMaster.com:
Artisan and Laravel Migrations
Aug 28, 2012 @ 13:38:08

PHPMaster.com has continued their series about the Laravel framework today with this new tutorial they show you how to use the command line tool Artisan to work with database migrations.

For those who struggle with maintaining their database schema, or who have problems applying updates and often revert them, there is a solution. Laravel, the MVC framework which I wrote about previously, offers you migrations.

On the surface, the migrations are simple sets of "up" and "down" methods that allow you to apply and remove the changes required for the migration. It also allows you to perform a "rollback" on the updates just made and a "reset" to clear out all changes and start over from the base. There's also a shortcut to help generate migration code from a configuration string.

tagged: laravel migration framework database tutorial

Link:


Trending Topics: