Update src/pilgrim/database.py

Remove Debug message

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Gustavo Henrique Miranda 2025-07-20 03:23:37 -03:00 committed by GitHub
parent 2ba1cbd0a6
commit e1add84537
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 4 deletions

View File

@ -29,10 +29,6 @@ class Database:
self._session_maker = sessionmaker(bind=self.engine, autoflush=False, autocommit=False)
def create(self):
# ADICIONE ESTAS 3 LINHAS AQUI
print("\n--- [DIAGNÓSTICO DA APLICAÇÃO] ---")
print("Tabelas que a Base conhece:", sorted(list(Base.metadata.tables.keys())))
print("----------------------------------")
Base.metadata.create_all(self.engine)
def session(self):