GitHub Action Sync
Automated sync from GitHub
f46edd0
Raw
History Blame Contribute Delete
251 Bytes
# database/base.py
from sqlmodel import SQLModel
# Import all models here so SQLModel knows about them
from .models import User, Goal, DayLog, ActivityEntry, Wallet, Transaction
# Export SQLModel metadata for migrations
metadata = SQLModel.metadata