mirror of
https://github.com/AtHeartEngineer/poap-reddit-bot.git
synced 2026-01-08 04:03:53 -05:00
6 lines
143 B
Python
6 lines
143 B
Python
import sqlalchemy
|
|
|
|
from poapbot.db import metadata, DB_SETTINGS
|
|
|
|
engine = sqlalchemy.create_engine(DB_SETTINGS.url)
|
|
metadata.create_all(engine) |