10 lines
346 B
Python
10 lines
346 B
Python
|
from sqlalchemy import create_engine
|
||
|
from sqlalchemy.ext.declarative import declarative_base
|
||
|
from sqlalchemy.orm import sessionmaker
|
||
|
|
||
|
DATABASE_URL = "postgresql://postgres:postgres@localhost/price-builder"
|
||
|
|
||
|
engine = create_engine(DATABASE_URL)
|
||
|
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
|
||
|
Base = declarative_base()
|