mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2026-03-13 07:49:55 +08:00
36 lines
813 B
Python
36 lines
813 B
Python
import databases
|
|
import sqlalchemy
|
|
from fastapi_users.db import (
|
|
SQLAlchemyBaseOAuthAccountTable,
|
|
SQLAlchemyBaseUserTable,
|
|
SQLAlchemyUserDatabase,
|
|
)
|
|
from sqlalchemy.ext.declarative import DeclarativeMeta, declarative_base
|
|
|
|
from .models import UserDB
|
|
|
|
DATABASE_URL = "sqlite:///./test.db"
|
|
database = databases.Database(DATABASE_URL)
|
|
Base: DeclarativeMeta = declarative_base()
|
|
|
|
|
|
class UserTable(Base, SQLAlchemyBaseUserTable):
|
|
pass
|
|
|
|
|
|
class OAuthAccount(SQLAlchemyBaseOAuthAccountTable, Base):
|
|
pass
|
|
|
|
|
|
engine = sqlalchemy.create_engine(
|
|
DATABASE_URL, connect_args={"check_same_thread": False}
|
|
)
|
|
Base.metadata.create_all(engine)
|
|
|
|
users = UserTable.__table__
|
|
oauth_accounts = OAuthAccount.__table__
|
|
|
|
|
|
def get_user_db():
|
|
yield SQLAlchemyUserDatabase(UserDB, database, users, oauth_accounts)
|