users: store timezone, default is "UTC"

This commit is contained in:
Philippe Loctaux 2023-04-13 22:01:27 +02:00
parent 1168e1494c
commit e49c146dfd
14 changed files with 415 additions and 322 deletions

View file

@ -0,0 +1,2 @@
alter table users
drop column timezone;

View file

@ -0,0 +1,2 @@
alter table users
add column timezone TEXT not null default 'UTC';