Skip to content

Commit

Permalink
plugins] model
Browse files Browse the repository at this point in the history
  • Loading branch information
SkywalkerSpace committed Sep 22, 2020
1 parent 5f05d42 commit 82eab25
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions seatable_thumbnail/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,12 @@ class DjangoSession(Base):
session_key = Column(String(40), primary_key=True)
session_data = Column(Text)
expire_date = Column(DateTime)


class DTableSystemPlugins(Base):
__tablename__ = 'dtable_system_plugin'
id = Column(Integer, primary_key=True)
added_by = Column(String(255))
added_time = Column(DateTime)
info = Column(Text)
name = Column(String(255), index=True)
4 changes: 4 additions & 0 deletions seatable_thumbnail/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
THUMBNAIL_VIDEO_FRAME_TIME = 5


# plugin
PLUGINS_REPO_ID = ''


# ======================== local settings ======================== #
try:
from local_settings import *
Expand Down

0 comments on commit 82eab25

Please sign in to comment.