File size: 301 Bytes
a291087
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from sqlmodel import create_engine, Session, SQLModel
from .config import settings

engine = create_engine(
    settings.DATABASE_URL,
    pool_pre_ping=True,
    pool_recycle=3600
)

def init_db():
    # This will be used to create tables if they don't exist
    SQLModel.metadata.create_all(engine)