This commit is contained in:
Kenio 2025-11-15 11:28:35 -03:00
parent e27b88ac23
commit d66288f36d

View file

@ -40,6 +40,9 @@ class ShowDatabaseRepository(BaseRepository):
# Execução para buscar a estrutura padrão (sem parâmetros)
structure_database = self.fetch_one(sql_standard_structure)
structure_preview = str(structure_database)
print(structure_preview[:2000])
# O campo 'structure' contém o JSON da estrutura padrão (como string)
standard_structure_json = structure_database.get('structure') if structure_database else None