Flask-SQLAlchemy create_all()
When i run the dbManager.create_all() command, it runs with out errors but fails to create the tables. When i delete the database and run the create_all() command, i get the no such database as ##### error which i should get but when the database does exist, nothing happens. Please can anyone see what i'm doing wrong? from blogconfig import dbManager class Art(dbManager.Model): id = dbManager.Column(dbManager.Integer, primary_key = True) title = dbManager.Column(dbManager.String(64), index = True, unique = True) content = dbManager.Column(dbManager.Text(5000)) def __repr__(self): return '<Art