Skip to content

Commit f520607

Browse files
committed
Fix rollback for webhook_endpoint by using correct column type
1 parent 0209d27 commit f520607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2023_08_01_174150_change_webhook_settings_variable_type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function up()
2626
public function down()
2727
{
2828
Schema::table('settings', function (Blueprint $table) {
29-
$table->varchar('webhook_endpoint')->change();
29+
$table->string('webhook_endpoint')->change();
3030
});
3131

3232
}

0 commit comments

Comments
 (0)