lot_manager/create_db.py

3 lines
71 B
Python
Raw Normal View History

2023-12-05 18:30:33 +08:00
from db.base import Base, engine
2023-12-08 14:26:42 +08:00
2023-12-05 18:30:33 +08:00
Base.metadata.create_all(bind=engine)