summaryrefslogtreecommitdiff
path: root/app/python
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-03-16 23:38:58 +0100
committeremkael <emkael@tlen.pl>2016-03-16 23:38:58 +0100
commita6cc84b7759d554896468b866019663732cc3df0 (patch)
tree06e17fb330db9df1d152a3b1bb7d3f0d1a2135ad /app/python
parent519ae86377ce9462099c3d025ed4d2fda90774c5 (diff)
* custom fields for calendar record
Diffstat (limited to 'app/python')
-rw-r--r--app/python/rcal/model.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/python/rcal/model.py b/app/python/rcal/model.py
index 4ac212f..eb5325e 100644
--- a/app/python/rcal/model.py
+++ b/app/python/rcal/model.py
@@ -32,6 +32,9 @@ class Calendar(BASE):
name = Column(String(255), index=True)
website = Column(String(255))
visible = Column(Boolean, index=True)
+ custom_name = Column(String(255))
+ custom_image = Column(String(255))
+ custom_url = Column(String(255))
last_updated = Column(TIMESTAMP)
_category = Column(