MySQL Table not created using Flask and PyMySQL
问题 This maybe a duplicate, but all the solutions to the other questions did not help me. I am trying to modularize my code where I am moving my config files to a separate file called settings.py. To run the code i am going running from my terminal "python3 manage.py shell" Python not updating then I execute from flask_blog import db from author.models import Author db.create_all() Hence the QUESTION is: Why is the database not being updated? The three file I have that concern config are: manage