cuizin/db.py

13 lines
200 B
Python
Raw Normal View History

2018-02-26 20:48:57 +01:00
from peewee import *
db = SqliteDatabase('people.db')
class Person(Model):
name = CharField()
birthday = DateField()
is_relative = BooleanField()
class Meta:
database = db