OwlCyberSecurity - MANAGER
Edit File: 2018_05_17_080206_create_promotions_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePromotionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('promotions', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->mediumText('details'); $table->string('accessible')->nullable(); $table->dateTime('publishOn'); $table->string('coverPath')->nullable(); $table->integer('publishStatus')->default('0'); $table->integer('otherStatus')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('promotions'); } }