1
0
mirror of https://github.com/enpaul/kodak.git synced 2025-09-19 05:31:58 +00:00

Add initial database schema and infrastructure components

This commit is contained in:
2020-09-21 23:10:18 -04:00
parent 474d846f47
commit e265dda12d
4 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import peewee
from imagemonk.database._shared import ImageMonkModel
from imagemonk.database.image import ImageRecord
class ThumbnailRecord(ImageMonkModel):
parent = peewee.ForeignKeyField(ImageRecord)
width = peewee.IntegerField(null=False)
height = peewee.IntegerField(null=False)