diff options
author | Aaron Parecki <aaron@parecki.com> | 2017-01-15 08:07:54 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2017-01-15 08:07:54 -0800 |
commit | 3310a85ac8f276ad270388a4242b623f30abe74d (patch) | |
tree | 8e9da2a1861432e361bb5ac2dc5245015b8c11f1 /schema/mysql.sql | |
parent | fa06932a9c1bb289cae6cbaa046c6b9c07bf5b1a (diff) |
store the user's timezone after their location is found
Diffstat (limited to 'schema/mysql.sql')
-rw-r--r-- | schema/mysql.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/mysql.sql b/schema/mysql.sql index 610b01b..31f10fd 100644 --- a/schema/mysql.sql +++ b/schema/mysql.sql @@ -21,6 +21,7 @@ CREATE TABLE `users` ( `twitter_token_secret` text, `twitter_username` varchar(255) DEFAULT NULL, `instagram_access_token` text, - `email_username` varchar(255) DEFAULT NULL, + `email_username` vacrchar(255) DEFAULT NULL, + `default_timezone` vacrchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; |