id(); $table->foreignId('conversation_id')->nullable(); $table->foreignId('sender_id')->nullable(); $table->text('message')->nullable(); $table->string('file',100)->nullable(); $table->boolean('is_seen')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messages'); } }