コード例 #1
0
def update_database(conf):
    """Do any database updates required at process boot time, such as
    updating the traits table.
    """
    if conf.placement_database.sync_on_startup:
        migration.upgrade('head')
    ctx = db_api.DbContext()
    trait.ensure_sync(ctx)
    resource_class.ensure_sync(ctx)
コード例 #2
0
ファイル: test_migrations.py プロジェクト: pavera/placement
 def db_sync(self, engine):
     migration.upgrade('head')
コード例 #3
0
ファイル: manage.py プロジェクト: knodir/placement
 def db_sync(self):
     # Let exceptions raise for now, they will go to stderr.
     migration.upgrade('head')
     return 0