46 lines
1.2 KiB
PHP
46 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateCustomersTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('customers', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('company_id');
|
|
$table->integer('user_id')->nullable();
|
|
$table->string('name');
|
|
$table->string('email');
|
|
$table->string('tax_number')->nullable();
|
|
$table->string('phone')->nullable();
|
|
$table->text('address')->nullable();
|
|
$table->string('website')->nullable();
|
|
$table->string('currency_code');
|
|
$table->boolean('enabled');
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
|
|
$table->index('company_id');
|
|
$table->unique(['company_id', 'email', 'deleted_at']);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('customers');
|
|
}
|
|
}
|