PHP Classes

File: users_table.sql

Recommend this page to a friend!
  Classes of Mohamed Elbahja   PHP oAuth Loginer   users_table.sql   Download  
File: users_table.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP oAuth Loginer
Authenticate users with Facebook, Google, Twitter
Author: By
Last change:
Date: 8 years ago
Size: 699 bytes
 

Contents

Class file image Download
CREATE TABLE `loginer_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `oauth` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `uid` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `gender` varchar(10) COLLATE utf8_unicode_ci NOT NULL, `last_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `first_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `picture` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `date_created` datetime NOT NULL, `date_modified` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;