<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; class CreateAddonsTable extends Migration { /* * Run the migrations. * * @return void */ public function up() { /* * Table: addons */ Schema::create('addons', function ($table) { $table->increments('id'); $table->integer('admin_user_login')->nullable(); $table->integer('add_bank')->nullable(); $table->integer('hide_compound_rate')->nullable(); $table->integer('provide_google_authentication')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('addons'); } }