Earlier while using Manager from flask_script we can add command to Manager like this.
from flask_migrate import Migrate, MigrateCommand
from flask_script import Manager
manager = Manager(app)
manager.add_command('db', MigrateCommand)
Now in this new flask app I am not using flask script, so how do I add command db to like flask run is?