mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
1712f26470
Using env enables the scripts to run in virtualenv as well as in a differently named or bare environment. Signed-off-by: Felix Kaechele <felix@kaechele.ca>
9 lines
397 B
Python
Executable File
9 lines
397 B
Python
Executable File
#!/usr/bin/env python
|
|
from migrate.versioning import api
|
|
from config import SQLALCHEMY_DATABASE_URI
|
|
from config import SQLALCHEMY_MIGRATE_REPO
|
|
v = api.db_version(SQLALCHEMY_DATABASE_URI, SQLALCHEMY_MIGRATE_REPO)
|
|
api.downgrade(SQLALCHEMY_DATABASE_URI, SQLALCHEMY_MIGRATE_REPO, v - 1)
|
|
v = api.db_version(SQLALCHEMY_DATABASE_URI, SQLALCHEMY_MIGRATE_REPO)
|
|
print('Current database version: ' + str(v))
|