diff options
author | emkael <emkael@tlen.pl> | 2016-03-16 01:08:36 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-03-16 01:08:36 +0100 |
commit | aa633881b411c81009d4e1d394d30c950da9c70f (patch) | |
tree | 8d0d3ce360994f57a597900d9b7857a85a3dc304 /app/python/rcal/model.py | |
parent | fbca8e50c0d309fa37834ee64ba5c0c7a5732808 (diff) |
* timezone preference information for users
Diffstat (limited to 'app/python/rcal/model.py')
-rw-r--r-- | app/python/rcal/model.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/python/rcal/model.py b/app/python/rcal/model.py index 3ecfceb..4ac212f 100644 --- a/app/python/rcal/model.py +++ b/app/python/rcal/model.py @@ -139,6 +139,7 @@ class User(BASE): login = Column(String(255), unique=True, index=True) password = Column(String(255)) is_admin = Column(Boolean) + timezone = Column(String(255)) last_login = Column(UTCDateTime) calendars = relationship('Calendar', |