feat(integration): add requires_tenant_configuration field and update related logic and tests
This commit is contained in:
@@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user