OwlCyberSecurity - MANAGER
Edit File: 2018_05_17_073455_create_feedback_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateFeedbackTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('feedback', function (Blueprint $table) { $table->increments('id'); $table->integer('userID'); $table->text('feedback'); $table->string('name')->nullable(); $table->string('username')->nullable(); $table->boolean('approve')->default('0'); $table->boolean('status')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('feedback'); } }