1
0
mirror of https://github.com/enpaul/kodak.git synced 2024-09-21 08:13:54 +00:00
kodak/dehance/database/_shared.py

16 lines
382 B
Python
Raw Normal View History

import datetime
import uuid
import peewee
INTERFACE = peewee.DatabaseProxy()
2021-05-02 22:12:04 +00:00
class DehanceModel(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)