⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
muhasebe
/
modules
/
Flight
/
Migrations
/
View File Name :
2019_07_30_072809_create_flight_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; use Modules\Flight\Models\Airline; use Modules\Flight\Models\Airport; use Modules\Flight\Models\BookingPassengers; use Modules\Flight\Models\Flight; use Modules\Flight\Models\FlightSeat; use Modules\Flight\Models\FlightTerm; use Modules\Flight\Models\SeatType; class CreateFlightTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { $this->down(); Schema::create(FlightTerm::getTableName(), function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('term_id')->nullable(); $table->integer('target_id')->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->softDeletes(); $table->timestamps(); }); Schema::create(Airport::getTableName(), function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name')->nullable(); $table->string('code')->unique(); $table->string('address')->nullable(); $table->string('country',20)->nullable(); $table->integer('location_id')->nullable(); $table->text('description')->nullable(); $table->string('map_lat', 20)->nullable(); $table->string('map_lng', 20)->nullable(); $table->integer('map_zoom')->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->string('status',30)->nullable()->default('publish'); $table->timestamps(); }); Schema::create(Airline::getTableName(), function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name')->nullable(); $table->integer('image_id')->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->softDeletes(); $table->timestamps(); }); Schema::create(SeatType::getTableName(), function (Blueprint $table) { $table->bigIncrements('id'); $table->string('code')->unique(); $table->string('name')->nullable(); $table->bigInteger('create_user')->nullable(); $table->bigInteger('update_user')->nullable(); $table->softDeletes(); $table->timestamps(); }); Schema::create(Flight::getTableName(), function (Blueprint $blueprint) { $blueprint->bigIncrements('id'); $blueprint->string('title')->nullable(); $blueprint->string('code')->nullable(); $blueprint->decimal('review_score',2,1)->nullable(); $blueprint->dateTime('departure_time')->nullable(); $blueprint->dateTime('arrival_time')->nullable(); $blueprint->float('duration')->nullable(); $blueprint->decimal('min_price', 12, 2)->nullable(); $blueprint->integer('airport_to')->nullable(); $blueprint->integer('airport_from')->nullable(); $blueprint->integer('airline_id')->nullable(); $blueprint->string('status', 50)->nullable(); $blueprint->bigInteger('create_user')->nullable(); $blueprint->bigInteger('update_user')->nullable(); $blueprint->timestamps(); $blueprint->softDeletes(); }); Schema::create(FlightSeat::getTableName(), function (Blueprint $blueprint) { $blueprint->bigIncrements('id'); $blueprint->decimal('price', 12, 2)->nullable(); $blueprint->integer('max_passengers')->nullable(); $blueprint->integer('flight_id')->nullable(); $blueprint->string('seat_type')->nullable(); $blueprint->string('person')->nullable(); $blueprint->integer('baggage_check_in')->nullable(); $blueprint->integer('baggage_cabin')->nullable(); $blueprint->bigInteger('create_user')->nullable(); $blueprint->bigInteger('update_user')->nullable(); $blueprint->timestamps(); $blueprint->softDeletes(); }); Schema::create(BookingPassengers::getTableName(), function (Blueprint $blueprint) { $blueprint->bigIncrements('id'); $blueprint->integer('flight_id')->nullable(); $blueprint->integer('flight_seat_id')->nullable(); $blueprint->integer('booking_id')->nullable(); $blueprint->string('seat_type')->nullable(); $blueprint->string('email')->nullable(); $blueprint->string('first_name')->nullable(); $blueprint->string('last_name')->nullable(); $blueprint->string('phone')->nullable(); $blueprint->dateTime('dob')->nullable(); $blueprint->decimal('price', 12, 2)->nullable(); $blueprint->string('id_card')->nullable(); $blueprint->string('object_model',30); $blueprint->bigInteger('object_id')->nullable(); $blueprint->index('booking_id'); $blueprint->index(['object_model','object_id']); $blueprint->bigInteger('create_user')->nullable(); $blueprint->bigInteger('update_user')->nullable(); $blueprint->timestamps(); $blueprint->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists(FlightTerm::getTableName()); Schema::dropIfExists(Airport::getTableName()); Schema::dropIfExists(Airline::getTableName()); Schema::dropIfExists(SeatType::getTableName()); Schema::dropIfExists(Flight::getTableName()); Schema::dropIfExists(FlightSeat::getTableName()); Schema::dropIfExists(BookingPassengers::getTableName()); } }