OwlCyberSecurity - MANAGER
Edit File: 2018_05_17_073545_create_sliders_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSlidersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sliders', function (Blueprint $table) { $table->increments('id'); $table->string('path'); $table->string('desc')->nullable(); $table->string('url')->nullable(); $table->boolean('status')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sliders'); } }