pronounsfu/scripts/migrate/019_timezones.sql

10 lines
159 B
MySQL
Raw Normal View History

2023-07-30 14:13:35 -07:00
-- 2023-07-30: Add user timezones
2023-08-15 18:30:34 -07:00
-- +migrate Up
2023-07-30 14:13:35 -07:00
alter table users add column timezone text null;
2023-08-15 18:30:34 -07:00
-- +migrate Down
alter table users drop column timezone;