gallery.accords-library.com/server/szurubooru/db/snapshot.py

29 lines
967 B
Python
Raw Normal View History

from sqlalchemy.orm import relationship
from sqlalchemy import (
Column, Integer, DateTime, Unicode, PickleType, ForeignKey)
from szurubooru.db.base import Base
class Snapshot(Base):
__tablename__ = 'snapshot'
OPERATION_CREATED = 'created'
OPERATION_MODIFIED = 'modified'
OPERATION_DELETED = 'deleted'
snapshot_id = Column('id', Integer, primary_key=True)
creation_time = Column('creation_time', DateTime, nullable=False)
resource_type = Column(
'resource_type', Unicode(32), nullable=False, index=True)
2016-05-09 07:43:00 +00:00
resource_id = Column('resource_id', Integer, nullable=False, index=True)
resource_repr = Column('resource_repr', Unicode(64), nullable=False)
operation = Column('operation', Unicode(16), nullable=False)
2016-08-15 16:36:14 +00:00
user_id = Column(
'user_id',
Integer,
ForeignKey('user.id', ondelete='set null'),
nullable=True)
data = Column('data', PickleType)
user = relationship('User')