File: /home/xedaptot/be.naniguide.com/database/migrations/2016_06_17_041253_create_layouts_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateLayoutsTable extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('layouts', function (Blueprint $table) {
$table->increments('id');
$table->uuid('uid');
$table->string('alias');
$table->string('group_name');
$table->longtext('content');
$table->string('type');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::drop('layouts');
}
}