Change length of webhook urls

This commit is contained in:
David Bomba 2023-07-20 08:07:11 +10:00
parent 6139c7b0ee
commit b8c4d6668f

View File

@ -16,6 +16,10 @@ return new class extends Migration
Schema::table('tasks', function (Blueprint $table) {
$table->date('calculated_start_date')->nullable();
});
Schema::table('webhooks', function (Blueprint $table){
$table->text('target_url')->change();
});
}
/**