13 lines
200 B
Python
13 lines
200 B
Python
|
from peewee import *
|
||
|
|
||
|
db = SqliteDatabase('people.db')
|
||
|
|
||
|
|
||
|
class Person(Model):
|
||
|
name = CharField()
|
||
|
birthday = DateField()
|
||
|
is_relative = BooleanField()
|
||
|
|
||
|
class Meta:
|
||
|
database = db
|