Пример #1
0
 def setUp(self):
     db.create_all()
Пример #2
0
 def clear_db(self):
     db.drop_all()
     db.create_all()
Пример #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']
Пример #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']
Пример #5
0
 def setUp(self):
     db.create_all()
Пример #6
0
 def clear_db(self):
     db.drop_all()
     db.create_all()