D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2021_07_06_055059_create_booking_statuses_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateBookingStatusesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('booking_statuses', function (Blueprint $table) { $table->id(); $table->string('value')->nullable(); $table->string('label')->nullable(); $table->tinyInteger('status')->nullable()->default('1')->comment('0-inactive , 1 - active'); $table->integer('sequence')->nullable()->default('0'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('booking_statuses'); } }