diff --git a/migrations/2022-01-23-075818_add_user_timezone/down.sql b/migrations/2022-01-23-075818_add_user_timezone/down.sql new file mode 100644 index 0000000..2d44f7b --- /dev/null +++ b/migrations/2022-01-23-075818_add_user_timezone/down.sql @@ -0,0 +1,3 @@ +-- This file should undo anything in `up.sql` +alter table users + drop column timezone; \ No newline at end of file diff --git a/migrations/2022-01-23-075818_add_user_timezone/up.sql b/migrations/2022-01-23-075818_add_user_timezone/up.sql new file mode 100644 index 0000000..0923018 --- /dev/null +++ b/migrations/2022-01-23-075818_add_user_timezone/up.sql @@ -0,0 +1,3 @@ +-- Your SQL goes here +alter table users + add timezone text; \ No newline at end of file