コード例 #1
0
ファイル: manage.py プロジェクト: jsoref/Netflix-sketchy
def drop_db():
    """
    Drops a database with all of the tables defined in
    your Alchemy models
    """
    db.drop_all()
コード例 #2
0
ファイル: tests.py プロジェクト: jsoref/Netflix-sketchy
 def tearDown(self):
     db.session.remove()
     db.drop_all()
コード例 #3
0
ファイル: tests.py プロジェクト: Adrellias/sketchy
 def tearDown(self):
     db.session.remove()
     db.drop_all()
コード例 #4
0
ファイル: manage.py プロジェクト: hj3938/sketchy
def drop_db():
    """
    Drops a database with all of the tables defined in
    your Alchemy models
    """
    db.drop_all()