File: /home/xedaptot/be.naniguide.com/database/migrations/2016_06_09_174024_create_contacts_table.php
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateContactsTable extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('contacts', function (Blueprint $table) {
$table->increments('id');
$table->uuid('uid');
$table->string('first_name')->nullable();
$table->string('last_name')->nullable();
$table->string('company')->nullable();
$table->string('address_1');
$table->string('address_2')->nullable();
$table->integer('country_id')->unsigned();
$table->string('state');
$table->string('zip');
$table->string('phone')->nullable();
$table->string('url')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down()
{
Schema::drop('contacts');
}
}