Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Niansuh/Test24
mxrkai
/
test24
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a096efd
test24
/
create_tables.py
Niansuh
Create create_tables.py
eb9171d
verified
7 months ago
raw
Copy download link
history
blame
Safe
183 Bytes
# create_tables.py
from
database
import
engine
from
models
import
Base
def
create_tables
():
Base.metadata.create_all(bind=engine)
if
__name__ ==
"__main__"
:
create_tables()