CasperSecurity
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateEmployeeAddressesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('employee_addresses', function (Blueprint $table) {
$table->id();
$table->foreignId('employee_profile_id')->constrained('employee_profiles')->cascadeOnDelete();
$table->string('area_houseno');
$table->foreignId('state_id')->nullable();
$table->foreignId('city_id')->nullable();
$table->integer('pincode');
$table->string('adr_type');
$table->tinyInteger('status')->default('1');
$table->string('created_by')->nullable();
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('employee_addresses');
}
}