diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-07-25 05:44:10 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-07-25 05:44:10 -0700 |
commit | c3fb722ad4bade9c4027c04de9b8dee511ab5756 (patch) | |
tree | da4711f4ea9b4d1b79003c1c3d28acadeba9f781 /schema | |
parent | 92b55f2636a82c5eafc24d1e2adc84b61258161e (diff) |
add post-by-email support to quill
Diffstat (limited to 'schema')
-rw-r--r-- | schema/mysql.sql | 1 | ||||
-rw-r--r-- | schema/sqlite.sql | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/schema/mysql.sql b/schema/mysql.sql index 5f33ce6..e9f6d1d 100644 --- a/schema/mysql.sql +++ b/schema/mysql.sql @@ -19,5 +19,6 @@ CREATE TABLE `users` ( `twitter_token_secret` text, `twitter_username` varchar(255) DEFAULT NULL, `instagram_access_token` text, + `email_username` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/schema/sqlite.sql b/schema/sqlite.sql index ac691e3..9f05c1e 100644 --- a/schema/sqlite.sql +++ b/schema/sqlite.sql @@ -18,5 +18,6 @@ CREATE TABLE users ( twitter_access_token TEXT, twitter_token_secret TEXT, twitter_username TEXT, - instagram_access_token TEXT + instagram_access_token TEXT, + email_username TEXT );
\ No newline at end of file |