id(); $table->foreignId('chat_id')->constrained('chat_group')->onDelete('cascade'); $table->string('from'); $table->string('to'); $table->text('message'); $table->string('type'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('message'); } };