increments('id'); $table->unsignedInteger('from')->references('id')->on('users')->onDelete('cascade')->onUpdate('cascade'); $table->unsignedInteger('to')->references('id')->on('users')->onDelete('cascade')->onUpdate('cascade'); $table->text('content'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { \Illuminate\Support\Facades\Schema::drop('messages'); } }