| Issue 6: | mysql_create_tables.sql should allow scope to be NULL | |
| 1 person starred this issue and may be notified of changes. | Back to list |
The table tokens does not allow scope to be NULL, but in the function "store_access_token" scope is set to null if no other value is passed. A better way to create the table would be: CREATE TABLE `tokens` ( `id` VARCHAR( 40 ) NOT NULL , `client_id` VARCHAR( 20 ) NOT NULL , `expires` INT NOT NULL , `scope` VARCHAR( 200 ) NULL , PRIMARY KEY ( `id` ) )
Dec 13, 2010
Project Member
#1
hswon...@pantarei-design.com
Status:
Fixed
|