Ejemplo n.º 1
0
def create_db():
    """
    Creates a database with all of the tables defined in
    your Alchemy models
    """
    db.create_all()
Ejemplo n.º 2
0
 def setUp(self):
     self.test_app = app.test_client()
     db.create_all()
Ejemplo n.º 3
0
 def setUp(self):
     self.test_app = app.test_client()
     db.create_all()
Ejemplo n.º 4
0
def create_db():
    """
    Creates a database with all of the tables defined in
    your Alchemy models
    """
    db.create_all()