mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-01-26 22:11:31 +01:00
14 lines
520 B
Python
14 lines
520 B
Python
|
#!/usr/bin/env python
|
||
|
from migrate.versioning import api
|
||
|
from config import SQLALCHEMY_DATABASE_URI
|
||
|
from config import SQLALCHEMY_MIGRATE_REPO
|
||
|
from app import db
|
||
|
import os.path
|
||
|
db.create_all()
|
||
|
if not os.path.exists(SQLALCHEMY_MIGRATE_REPO):
|
||
|
api.create(SQLALCHEMY_MIGRATE_REPO, 'database repository')
|
||
|
api.version_control(SQLALCHEMY_DATABASE_URI, SQLALCHEMY_MIGRATE_REPO)
|
||
|
else:
|
||
|
api.version_control(SQLALCHEMY_DATABASE_URI, SQLALCHEMY_MIGRATE_REPO,
|
||
|
api.version(SQLALCHEMY_MIGRATE_REPO))
|