PHP Classes

File: database_table.sql

Recommend this page to a friend!
  Classes of Aziz S. Hussain   Netflix API Wrapper   database_table.sql   Download  
File: database_table.sql
Role: Auxiliary data
Content type: text/plain
Description: SQL Database Dump
Class: Netflix API Wrapper
Retrieve NetFlix Web services using its API
Author: By
Last change:
Date: 13 years ago
Size: 476 bytes
 

Contents

Class file image Download
-- -- Table structure for table `user_tokens` -- -- This query will create the DB table for you -- Insure that the db info is also updated in -- configs.ini.php CREATE TABLE IF NOT EXISTS `user_tokens` ( `user_id` int(11) NOT NULL, `token_string` varchar(255) NOT NULL, `token_secret_string` varchar(255) NOT NULL, `step_id` tinyint(1) NOT NULL, `netflix_id` varchar(255) DEFAULT NULL, PRIMARY KEY (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;