Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Docfile
/
Mariam-metho
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a563878
Mariam-metho
/
reset_db.py
kuro223
a
51a3c38
about 2 months ago
raw
Copy download link
history
blame
Safe
163 Bytes
from
app
import
app, db, add_sample_data
with
app.app_context():
db.drop_all()
db.create_all()
add_sample_data()
print
(
"Database reset complete."
)