1 CREATE TABLE IF NOT EXISTS `prefix_explode` (
\r
2 `ident` int(11) NOT NULL auto_increment,
\r
3 `owner` int(11) NOT NULL COMMENT '-> pageowner',
\r
4 `service` int(11) NOT NULL COMMENT '-> This is the external service to pull friends from',
\r
5 `service_username` text NOT NULL COMMENT '-> The Elgg user username on that service',
\r
6 `service_name` text NOT NULL COMMENT '-> The actual name of the service',
\r
7 `number_to_display` int(11) NOT NULL COMMENT '-> The number of results to display',
\r
8 PRIMARY KEY (`ident`)
\r