foreignIdFor(\App\Models\User::class,'creator_id')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('templates', function (Blueprint $table) { $table->dropColumn('creator_id'); }); } };