Initial commit

This commit is contained in:
2026-04-07 12:31:22 +05:30
commit 510fba47b5
54 changed files with 2964 additions and 0 deletions

8
inspect_db.py Normal file
View File

@@ -0,0 +1,8 @@
from app_core.db.database import engine
from sqlalchemy import text
import pandas as pd
with engine.connect() as conn:
df = pd.read_sql(text('SELECT * FROM "tenantpostings" LIMIT 1'), conn)
print("Columns in tenantpostings:")
print(", ".join(df.columns.tolist()))