refaktorálás javításai

This commit is contained in:
Roo
2026-03-13 10:22:41 +00:00
parent 2d8d23f469
commit f53e0b53df
140 changed files with 7316 additions and 4579 deletions

View File

@@ -62,11 +62,11 @@ async def diagnose():
# Tábla neve (sémával) | Elvárt oszlopok listája
tables_to_check = [
("identity.users", ["preferred_language", "scope_id", "is_active"]),
("data.organizations", ["org_type", "folder_slug", "is_active"]),
("fleet.organizations", ["org_type", "folder_slug", "is_active"]),
("data.assets", ["owner_org_id", "catalog_id", "vin"]),
# "asset_catalog" helyett "vehicle_catalog"
("data.vehicle_catalog", ["make", "model", "factory_data"]),
("data.vehicle_model_definitions", ["status", "raw_search_context"])
("vehicle.vehicle_catalog", ["make", "model", "factory_data"]),
("vehicle.vehicle_model_definitions", ["status", "raw_search_context"])
]
for table, columns in tables_to_check: