coolify/database/migrations/2023_08_22_071049_update_webhooks_type.php
2023-08-24 16:14:09 +02:00

30 lines
681 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('webhooks', function (Blueprint $table) {
$table->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();
});
}
};