Simple status box for the sidebar.
[elgg_plugins.git] / explode / mysql.sql
blob619de52ea3e7d23960b9b1f36edfba157d92a12f
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
9 );