dbfdg bigIncrements('id'); $table->integer('complaint_from'); $table->integer('complaint_against'); $table->string('title'); $table->date('complaint_date'); $table->string('description')->nullable(); $table->string('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('complaints'); } }