mirror of
https://github.com/enpaul/kodak.git
synced 2024-11-13 10:07:04 +00:00
16 lines
382 B
Python
16 lines
382 B
Python
import datetime
|
|
import uuid
|
|
|
|
import peewee
|
|
|
|
|
|
INTERFACE = peewee.DatabaseProxy()
|
|
|
|
|
|
class FresnelModel(peewee.Model):
|
|
class Meta: # pylint: disable=too-few-public-methods,missing-class-docstring
|
|
database = INTERFACE
|
|
|
|
uuid = peewee.UUIDField(null=False, unique=True, default=uuid.uuid4)
|
|
created = peewee.DateTimeField(null=False, default=datetime.datetime.utcnow)
|