From a57cfa3be6ee0fbce336dc98e2862ac39f2b1add Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 25 Apr 2009 00:33:14 -0700 Subject: NEW FEATURE: added OpenID support Users can add and delete OpenIDs on the settings page and then log in user those OpenIds. They can also use their OpenIDs to register. --- create_database.sql | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'create_database.sql') diff --git a/create_database.sql b/create_database.sql index 319cdd3..339c337 100644 --- a/create_database.sql +++ b/create_database.sql @@ -457,3 +457,11 @@ UNLOCK TABLES; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +DROP TABLE IF EXISTS `user_openids`; +create table user_openids ( + openid_url varchar(255) not null, + primary key (openid_url), + + user_id int not null, + index (user_id) +); -- cgit v1.2.3-18-g5258