Skip to content

Commit da1fc96

Browse files
fixed some stuff
changed default on rest keys.  also removed two columns from key table until I can figure out how i want to handle the request status.
1 parent 806f8db commit da1fc96

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

application/config/rest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
174174
|
175175
*/
176-
$config['rest_enable_keys'] = TRUE;
176+
$config['rest_enable_keys'] = FALSE;
177177

178178
/*
179179
|--------------------------------------------------------------------------
@@ -242,9 +242,7 @@
242242
`api_key` varchar(40) NOT NULL,
243243
`ip_address` varchar(45) NOT NULL,
244244
`time` int(11) NOT NULL,
245-
`authorized` tinyint(1) NOT NULL,
246-
'status' int(3) NOT NULL,
247-
'payload' TEXT DEFAULT NULL,
245+
`authorized` tinyint(1) NOT NULL
248246
PRIMARY KEY (`id`)
249247
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
250248
|

0 commit comments

Comments
 (0)