dbfdg bigIncrements('id'); $table->text('comment'); $table->integer('bug_id')->default('0'); $table->string('user_type',100); $table->integer('created_by')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bug_comments'); } }