aboutsummaryrefslogtreecommitdiff
path: root/budget/migrations
AgeCommit message (Collapse)AuthorFilesLines
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau7-286/+0
* Use absolute imports and rename package to ihatemoney * Add a ihatemoney command * Factorize application creation logic * Refactor the tests * Update the wsgi.py module with the new create_app() function * Fix some styling thanks to Flake8. * Automate Flake8 check in the CI.
2016-06-28Convert readthedocs links for their .org -> .io migration for hosted projectsAdam Chainz1-1/+1
As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
2016-06-16Add migration to initialize Person weightsJocelyn Delande1-0/+39
That's for Persons that existed before the weights were added to model.
2016-06-15Add members weight in models and budget backend refs #94Jocelyn Delande1-0/+26
2016-05-31Handle migrations through alembic/flask-MigrationsJocelyn Delande5-0/+221
Auto-initialization now applies migrations instead of using db. create_all() fix #83