st-ten-1/src/lib/db/models/recipes.py

21 lines
622 B
Python
Raw Normal View History

2022-06-01 16:37:19 +00:00
from peewee import AutoField, BooleanField, TextField
from playhouse.sqlite_ext import JSONField
from .base_model import BaseModel
class Recipes(BaseModel):
id = AutoField(primary_key=True, unique=True, null=False)
name = TextField(null=False)
spec = JSONField(null=False) # keys inside spec must not overlap withthe model
archived = BooleanField(null=False, default=False)
@classmethod
def delete(cls, *args, **kwargs):
# OVERRIDE DELETION
# so that deleting a user will only archive it
return cls.update(archived=True)
class Meta:
table_name = "recipes"