[go: up one dir, main page]

File: artwork_cache.py

package info (click to toggle)
cozy 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,140 kB
  • sloc: python: 8,014; xml: 392; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 207 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from peewee import ForeignKeyField, CharField

from cozy.db.book import Book
from cozy.db.model_base import ModelBase


class ArtworkCache(ModelBase):
    book = ForeignKeyField(Book)
    uuid = CharField()