CasperSecurity
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateHolidaysTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('holidays', function (Blueprint $table) {
$table->id();
$table->foreignId('holiday_type_id')->constrained('holidays_types')->cascadeOnDelete();
$table->string('holiday');
$table->date('start_dt');
$table->date('end_dt');
$table->integer('no_of_days');
$table->tinyInteger('status')->default('1');
$table->string('created_by')->nullable();
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('holidays');
}
}