Fix rollback for webhook_endpoint by using correct column type

This commit is contained in:
Marcus Moore 2024-11-18 12:25:02 -08:00
parent 0209d27081
commit f5206078d4
No known key found for this signature in database

View file

@ -26,7 +26,7 @@ class ChangeWebhookSettingsVariableType extends Migration
public function down()
{
Schema::table('settings', function (Blueprint $table) {
$table->varchar('webhook_endpoint')->change();
$table->string('webhook_endpoint')->change();
});
}