コード例 #1
0
ファイル: db_create.py プロジェクト: KqSMea8/gueslang
from gearopedia import db

# create the database and the db table
db.create_all()

# insert data

# commit the changes
db.session.commit()
コード例 #2
0
ファイル: db_create.py プロジェクト: stevenmarr/gearopedia
from gearopedia import db

# create the database and the db table
db.create_all()

# insert data


# commit the changes
db.session.commit()
コード例 #3
0
ファイル: tests.py プロジェクト: stevenmarr/gearopedia
 def setUp(self):
     db.create_all()