File size: 163 Bytes
51a3c38
 
 
 
 
 
 
1
2
3
4
5
6
7
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.")