Created
March 19, 2025 06:46
-
-
Save ichux/dd55c7553ba2fad79b262af6c50f3636 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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