Exemplo n.º 1
0
 def setUp(self):
     db.init(TestingConfig.DB_NAME,
             host=TestingConfig.DB_HOST,
             user=TestingConfig.DB_USER,
             password=TestingConfig.DB_PASS,
             port=TestingConfig.DB_PORT)
     db.create_tables([User], safe=True)
Exemplo n.º 2
0
def create_tables():
    with db:
        db.create_tables([Notification])
Exemplo n.º 3
0
def bootstrap():
    db.connect(reuse_if_open=True)
    db.create_tables([Tokens, AccessRequests])
    db.close()
Exemplo n.º 4
0
def create_tables():
    with db:
        db.create_tables([Sale])
Exemplo n.º 5
0
def connect_to_db():
    db.create_tables([Route, Flight])
Exemplo n.º 6
0
def create_tables():
    with db:
        db.create_tables([User])
Exemplo n.º 7
0
def create_tables():
    with db:
        db.create_tables([Product])