We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get some issue with managing multiple SQLAlchemy db schema on my models when migration. I think, this is because of the flask application factory and application context design, referred from http://piotr.banaszkiewicz.org/blog/2012/06/29/flask-sqlalchemy-init_app/ .
Flask-SQLAlchemy has two usage modes.
Binding the instance to a very specific Flask application
app = Flask(__name__) db = SQLAlchemy(app)
Create the object once and configure the application later to support it
db = SQLAlchemy() def create_app(): app = Flask(__name__) db.init_app(app) return app
The Openedoo core uses option 1, change the core to option 2 to help you make models migration in this module.
suggestions are welcome.
The text was updated successfully, but these errors were encountered:
yah di note dulu, antara rubah core atau module
Sorry, something went wrong.
yup, ini sebagai clue aja jika ada yang mau mencoba module ini.
No branches or pull requests
I get some issue with managing multiple SQLAlchemy db schema on my models when migration. I think, this is because of the flask application factory and application context design, referred from http://piotr.banaszkiewicz.org/blog/2012/06/29/flask-sqlalchemy-init_app/ .
Flask-SQLAlchemy has two usage modes.
Option 1
Binding the instance to a very specific Flask application
Option 2
Create the object once and configure the application later to support it
The Openedoo core uses option 1, change the core to option 2 to help you make models migration in this module.
suggestions are welcome.
The text was updated successfully, but these errors were encountered: