unsignedInteger('user_id')->nullable(); $table->foreign('user_id')->references('id')->on('users')->onDelete('SET NULL')->onUpdate('NO ACTION'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('components', function (Blueprint $table) { $table->dropColumn('user_id'); }); } }