Пример #1
0
 def setup(self):
     app = create_app('gcis.settings.DevConfig', env='dev')
     self.app = app.test_client()
     db.app = app
     db.create_all()
     admin = User('admin', 'supersafepassword')
     db.session.add(admin)
     db.session.commit()
Пример #2
0
def createdb():
    """ Creates a database with all of the tables defined in
        your Alchemy models
    """

    db.create_all()
Пример #3
0
 def setup(self):
     app = create_app('gcis.settings.DevConfig', env='dev')
     self.app = app.test_client()
     db.app = app
     db.create_all()
Пример #4
0
def createdb():
    """ Creates a database with all of the tables defined in
        your Alchemy models
    """

    db.create_all()