Esempio n. 1
0
 def setUp(self):
     db.create_all()
Esempio n. 2
0
 def clear_db(self):
     db.drop_all()
     db.create_all()
Esempio n. 3
0
"""Creates a new database but only if the database doesn't exist yet"""
from __future__ import with_statement
import os
from simblin.extensions import db
from simblin import create_app

app = create_app()

with app.test_request_context():
    # The context is needed so db can access the configuration of the app
    db.create_all()

print "Initialized new empty database in %s" % app.config['SQLALCHEMY_DATABASE_URI']
Esempio n. 4
0
"""Creates a new database but only if the database doesn't exist yet"""
from __future__ import with_statement
import os
from simblin.extensions import db
from simblin import create_app

app = create_app()

with app.test_request_context():
    # The context is needed so db can access the configuration of the app
    db.create_all()

print "Initialized new empty database in %s" % app.config[
    'SQLALCHEMY_DATABASE_URI']
Esempio n. 5
0
 def setUp(self):
     db.create_all()
Esempio n. 6
0
 def clear_db(self):
     db.drop_all()
     db.create_all()