bigIncrements('id'); $table->unsignedBigInteger('chat_room_id')->index(); $table->unsignedBigInteger('user_id')->index(); $table->boolean('is_reading')->default(false); $table->text('message'); $table->timestamps(); $table->index(['created_at']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messages'); } }