dbfdg id(); $table->text('comment'); $table->integer('task_id'); $table->integer('user_id'); $table->string('user_type'); $table->integer('created_by'); $table->timestamps(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('task_comments'); } }