File "2023_12_25_162125_create_bravo_pricing_schedule_table.php"

Full Path: /home/bettaeza/flyinsyria.com/Booking/Database/Migrations/2023_12_25_162125_create_bravo_pricing_schedule_table.php
File size: 882 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
    public function up(): void
    {
        Schema::create('bravo_pricing_schedule', function (Blueprint $table) {
            $table->id();
            $table->dateTime('start_date')->nullable();
            $table->dateTime('end_date')->nullable();
            $table->text('months')->nullable();
            $table->string('day_of_week')->nullable();
            $table->integer('priority')->nullable();
            $table->bigInteger('create_user')->nullable();
            $table->bigInteger('update_user')->nullable();
            $table->timestamps();
        });
    }

    public function down(): void
    {
        Schema::dropIfExists('bravo_pricing_schedule');
    }
};