mirror of https://git.sr.ht/~sircmpwn/fosspay
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
459 B
14 lines
459 B
from sqlalchemy import create_engine
|
|
from sqlalchemy.orm import scoped_session, sessionmaker
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
|
|
from .config import _cfg, _cfgi
|
|
engine = create_engine(_cfg('connection-string'))
|
|
db = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine))
|
|
|
|
Base = declarative_base()
|
|
Base.query = db.query_property()
|
|
|
|
def init_db():
|
|
import fosspay.objects
|
|
Base.metadata.create_all(bind=engine)
|
|
|