File: /home/xedaptot/be.naniguide.com/database/migrations/2016_06_10_174528_create_customers_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCustomersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('customers', function (Blueprint $table) {
$table->increments('id');
$table->uuid('uid');
$table->integer('user_id')->unsigned();
$table->integer('admin_id')->unsigned()->nullable();
$table->integer('contact_id')->unsigned()->nullable();
$table->integer('language_id')->unsigned()->nullable();
$table->string('first_name');
$table->string('last_name');
$table->string('image')->nullable();
$table->string('timezone');
$table->string('status')->nullable();
$table->string('color_scheme')->nullable();
$table->binary('quota')->nullable();
$table->timestamps();
// foreign
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->foreign('admin_id')->references('id')->on('admins');
$table->foreign('contact_id')->references('id')->on('contacts');
$table->foreign('language_id')->references('id')->on('languages');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('customers');
}
}