Files
ponzi/laravel/cli/tasks/migrate/stub.php
2012-01-16 13:59:24 -06:00

25 lines
233 B
PHP

<?php
class {{class}} {
/**
* Make changes to the database.
*
* @return void
*/
public function up()
{
//
}
/**
* Revert the changes to the database.
*
* @return void
*/
public function down()
{
//
}
}