1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2025-01-10 16:10:04 +01:00
password-manager-mirror/backend/flask/src/db_upgrade.py
jokajak fab1d05127 Introduce new flask based python backend
This supports most functionality. Tested the following functionality:
* Create account
* Delete account
* Create a card
* Download offline copy (couldn't log in) - needs work
* Change passphrase
* One time password creation and use
2015-04-20 08:37:48 -04:00

8 lines
319 B
Python

#!/usr/bin/env python
from migrate.versioning import api
from config import SQLALCHEMY_DATABASE_URI
from config import SQLALCHEMY_MIGRATE_REPO
api.upgrade(SQLALCHEMY_DATABASE_URI, SQLALCHEMY_MIGRATE_REPO)
v = api.db_version(SQLALCHEMY_DATABASE_URI, SQLALCHEMY_MIGRATE_REPO)
print('Current database version: ' + str(v))