mirror of
https://github.com/simple-login/app.git
synced 2024-11-14 08:01:13 +01:00
372466ab06
- add __tablename__ for all models - use sa and orm instead of db - rollback all changes in tests - remove session in @app.teardown_appcontext
10 lines
269 B
Python
10 lines
269 B
Python
from sqlalchemy import create_engine
|
|
from sqlalchemy.orm import scoped_session
|
|
from sqlalchemy.orm import sessionmaker
|
|
|
|
from app.config import DB_URI
|
|
|
|
engine = create_engine(DB_URI)
|
|
connection = engine.connect()
|
|
|
|
Session = scoped_session(sessionmaker(bind=connection))
|