Fix rollback for webhook_endpoint by using correct column type
This commit is contained in:
parent
0209d27081
commit
f5206078d4
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
});
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue