Файл: src/vendor/way/generators/tests/stubs/CreateComplexOrdersTable.txt
Строк: 27
<?php
use Illuminate\Database\Migrations\Migration;
use
Illuminate\Database\Schema\Blueprint;
class CreateOrdersTable extends
Migration {
/**
* Run the migrations.
*
* @return void
*/
public
function up()
{
Schema::create('orders', function(Blueprint
$table)
{
$table->increments('id');
$table->string('title',
50)->unique();
$table->text('body')->unique()->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function
down()
{
Schema::drop('orders');
}
}