database/migrations/2020_01_01_000003_create_bookable_availabilities_table.php
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateBookableAvailabilitiesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
Schema::create(config('rinvex.bookings.tables.bookable_availabilities'), function (Blueprint $table) {
// Columns
$table->increments('id');
$table->morphs('bookable');
$table->string('range');
$table->string('from')->nullable();
$table->string('to')->nullable();
$table->boolean('is_bookable')->default(false);
$table->smallInteger('priority')->unsigned()->nullable();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
Schema::dropIfExists(config('rinvex.bookings.tables.bookable_availabilities'));
}
}