Skip to content

Instantly share code, notes, and snippets.

@ichux
Created March 19, 2025 06:46
Show Gist options
  • Save ichux/dd55c7553ba2fad79b262af6c50f3636 to your computer and use it in GitHub Desktop.
Save ichux/dd55c7553ba2fad79b262af6c50f3636 to your computer and use it in GitHub Desktop.
import logging
from sqlalchemy import Boolean, Column, Integer, String, create_engine
from sqlalchemy.orm import declarative_base, sessionmaker
from sqlalchemy.schema import CreateTable
logging.basicConfig(level=logging.INFO)
engine = create_engine("sqlite:///:memory:", connect_args={"check_same_thread": False})
SessionLocal = sessionmaker(bind=engine)
Base = declarative_base()
class User(Base):
__tablename__ = "users"
id = Column(Integer, primary_key=True, index=True)
username = Column(String, unique=True, nullable=False)
password_hash = Column(String, nullable=False)
enabled = Column(Boolean, default=True, nullable=False)
# Print the generated SQL
logging.error(str(CreateTable(User.__table__).compile(dialect=engine.dialect)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment