engine = 'InnoDB';
$table->integer('id', true);
$table->string('title', 192);
$table->integer('company_id')->index('holidays_company_id');
$table->date('start_date');
$table->date('end_date');
$table->text('description')->nullable();
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('holidays');
}
}