feat(integration): add requires_tenant_configuration field and update related logic and tests

This commit is contained in:
2026-07-22 09:23:58 -03:00
parent 03d8361e5f
commit 7e1ffbf417
9 changed files with 70 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('integrations', function (Blueprint $table) {
$table->boolean('requires_tenant_configuration')->default(true);
});
DB::table('integrations')
->where('integration_code', 'email')
->update(['requires_tenant_configuration' => false]);
}
public function down(): void
{
Schema::table('integrations', function (Blueprint $table) {
$table->dropColumn('requires_tenant_configuration');
});
}
};