flask-contacts/migrations.py
2017-05-11 18:31:59 +02:00

21 lines
504 B
Python

from models import db, Contact
from faker import Factory
fake = Factory.create()
# Spanish
#fake = Factory.create('es_ES')
# Reload tables
db.drop_all()
db.create_all()
# Make 100 fake contacts
for num in range(100):
fullname = fake.name().split()
name = fullname[0]
surname = ' '.join(fullname[1:])
email = fake.email()
phone = fake.phone_number()
# Save in database
mi_contacto = Contact(name, surname, email, phone)
db.session.add(mi_contacto)
db.session.commit()