fediversion/backend/scripts/check_metadata.py
fullsizemalt 7b8ba4b54c
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
feat: User Personalization, Playlists, Recommendations, and DSO Importer
2025-12-29 16:28:43 -08:00

9 lines
221 B
Python

import sys
import os
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
from sqlmodel import SQLModel
import models
print("Tables in metadata:")
for table in SQLModel.metadata.tables:
print(f"- {table}")