Created
September 27, 2015 09:55
-
-
Save Hamfri/57ec47312ca862e70b04 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# db_create.py | |
from datetime import date | |
from project import db | |
from project.models import Task, User | |
# create the database and db table | |
db.create_all() | |
# insert data | |
#db.session.add( | |
# User("admin", "[email protected]", "admin", "admin") | |
#) | |
#db.session.add( | |
#Task("Testing the admin", date(2016, 3, 13), 10, date(2015,8, 31), 1, 5)) | |
#db.session.add( | |
#Task("Finish Flask tasks", date(2016, 3, 13), 10, date(2015,8, 31), 1, 5)) | |
#db.session.add(Task("Finish Real Python", date(2015, 3, 13), 10, 1)) | |
# commit the changes | |
db.session.commit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment