<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateComplaintsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('complaints', function (Blueprint $table) { $table->bigIncrements('id'); $table->integer('complaint_from'); $table->integer('complaint_against'); $table->string('title'); $table->date('complaint_date'); $table->string('description'); $table->string('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('complaints'); } }