diff --git a/database/migrations/2026_02_07_002108_alter_inventory_links_ids_to_text.php b/database/migrations/2026_02_07_002108_alter_inventory_links_ids_to_text.php new file mode 100644 index 0000000..78aba0d --- /dev/null +++ b/database/migrations/2026_02_07_002108_alter_inventory_links_ids_to_text.php @@ -0,0 +1,47 @@ +create(); + $item = InventoryItem::factory()->for($tenant)->create([ + 'external_id' => '11111111-1111-1111-1111-111111111111', + ]); + + /** @var DependencyExtractionService $service */ + $service = app(DependencyExtractionService::class); + + $service->extractForPolicyData($item, [ + 'id' => $item->external_id, + 'roleScopeTagIds' => ['0'], + 'assignments' => [], + ]); + + if ($driver === 'pgsql') { + $columnTypes = collect(DB::select( + "select column_name, data_type from information_schema.columns where table_name = 'inventory_links' and column_name in ('source_id', 'target_id')" + )) + ->mapWithKeys(fn (object $row) => [(string) $row->column_name => (string) $row->data_type]); + + expect($columnTypes->get('source_id'))->toBe('text') + ->and($columnTypes->get('target_id'))->toBe('text'); + } + + expect( + InventoryLink::query() + ->where('tenant_id', $tenant->getKey()) + ->where('source_type', 'inventory_item') + ->where('source_id', $item->external_id) + ->where('relationship_type', RelationshipType::ScopedBy->value) + ->where('target_id', '0') + ->exists() + )->toBeTrue(); +});