51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('contacts', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('business_id')->unsigned();
|
|
$table->foreign('business_id')->references('id')->on('business')->onDelete('cascade');
|
|
$table->string('type')->index();
|
|
$table->string('supplier_business_name')->nullable();
|
|
$table->string('name');
|
|
$table->string('tax_number')->nullable();
|
|
$table->string('city')->nullable();
|
|
$table->string('state')->nullable();
|
|
$table->string('country')->nullable();
|
|
$table->string('landmark')->nullable();
|
|
$table->string('mobile');
|
|
$table->string('landline')->nullable();
|
|
$table->string('alternate_number')->nullable();
|
|
$table->integer('pay_term_number')->nullable();
|
|
$table->enum('pay_term_type', ['days', 'months'])->nullable();
|
|
$table->integer('created_by')->unsigned();
|
|
$table->boolean('is_default')->default(0);
|
|
$table->softDeletes();
|
|
$table->foreign('created_by')->references('id')->on('users')->onDelete('cascade');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('contacts');
|
|
}
|
|
};
|