File: /home/xedaptot/be.naniguide.com/database/migrations/2016_06_16_034306_create_segments_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSegmentsTable extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('segments', function (Blueprint $table) {
$table->increments('id');
$table->uuid('uid');
$table->integer('mail_list_id')->unsigned();
$table->string('name');
$table->string('matching');
$table->timestamps();
// foreign
$table->foreign('mail_list_id')->references('id')->on('mail_lists')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::drop('segments');
}
}