increments('id'); $table->integer('ticket_id')->unsigned(); $table->integer('user_id')->unsigned(); $table->text('ticketcomment'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ticket_comments'); } };