string('type')->change(); }); DB::statement('ALTER TABLE webhooks DROP CONSTRAINT webhooks_type_check'); } /** * Reverse the migrations. */ public function down(): void { Schema::table('webhooks', function (Blueprint $table) { $table->string('type')->change(); }); } };