OwlCyberSecurity - MANAGER
Edit File: 2018_05_17_073423_create_ads_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateAdsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('ads', function (Blueprint $table) { $table->increments('id'); $table->string('ads_image'); $table->string('position'); $table->string('page')->nullable(); $table->string('website')->nullable(); $table->string('description')->nullable(); $table->boolean('status')->default('0'); $table->boolean('other')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ads'); } }