haldis/app/create_database.py
Feliciaan De Palmenaer eba3fc5f07 forgot to add some files
2015-03-26 21:49:14 +01:00

18 lines
302 B
Python

from models import *
from app import db
db.drop_all()
db.create_all()
feli = User()
feli.configure("feliciaan", True, True)
db.session.add(feli)
don = User()
don.configure("don", True, True)
db.session.add(don)
# To future developers, add yourself here
# commit all the things
db.session.commit()