D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2021_07_28_000013_create_sliders_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSlidersTable extends Migration { public $tableName = 'sliders'; /** * Run the migrations. * @table sliders * * @return void */ public function up() { Schema::create($this->tableName, function (Blueprint $table) { $table->id(); $table->string('title')->nullable(); $table->text('description')->nullable(); $table->string('type')->nullable()->comment('service'); $table->string('type_id')->nullable()->comment('service_id'); $table->tinyInteger('status')->nullable()->default('1'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists($this->tableName); } }