lumen-generators/templates/migration.wnt

24 lines
409 B
Plaintext
Raw Permalink Normal View History

2015-09-23 03:49:46 +03:00
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
2015-10-07 19:37:17 +03:00
class {{name}}Table extends Migration
2015-09-23 03:49:46 +03:00
{
2016-12-29 18:35:34 +03:00
2015-09-23 03:49:46 +03:00
public function up()
{
Schema::create('{{table}}', function(Blueprint $table) {
$table->increments('id');
2015-09-26 04:43:35 +03:00
{{schema}}
2015-09-27 00:43:06 +03:00
{{constraints}}
{{additionals}}
2015-09-23 03:49:46 +03:00
});
}
public function down()
{
Schema::drop('{{table}}');
}
}