diff options
author | Aaron Parecki <aaron@parecki.com> | 2017-06-26 15:38:09 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2017-06-26 15:38:09 -0700 |
commit | 88d8392d1ecb8f95346fd3e636627b60680fb652 (patch) | |
tree | d929fad949122494bf18d3ede5b4f23f867ecb2a | |
parent | 965263492aa887ea079624dba361d74c61cb41aa (diff) |
fix schema
closes #77
-rw-r--r-- | schema/mysql.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/schema/mysql.sql b/schema/mysql.sql index 9796b5d..402218a 100644 --- a/schema/mysql.sql +++ b/schema/mysql.sql @@ -22,7 +22,7 @@ CREATE TABLE `users` ( `twitter_token_secret` text, `twitter_username` varchar(255) DEFAULT NULL, `instagram_access_token` text, - `email_username` vacrchar(255) DEFAULT NULL, - `default_timezone` vacrchar(255) DEFAULT NULL, + `email_username` varchar(255) DEFAULT NULL, + `default_timezone` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; |