OwlCyberSecurity - MANAGER
Edit File: 2018_05_17_073529_create_shots_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateShotsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('shots', 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('shots'); } }