Add field timezone in users to reflect user choosen timezone to parse times to

This commit is contained in:
Keanu D?lle 2022-01-23 09:05:46 +01:00
parent c2b314839b
commit e1ed350e91
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
-- This file should undo anything in `up.sql`
alter table users
drop column timezone;

View File

@ -0,0 +1,3 @@
-- Your SQL goes here
alter table users
add timezone text;