File size: 251 Bytes
4361d77
 
 
 
f46edd0
4361d77
 
 
1
2
3
4
5
6
7
8
9
# 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