string('custom_domain')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('forms', function (Blueprint $table) { $table->dropColumn(['custom_domain']); }); } };