1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
/* CREATE TABLES */
CREATE TABLE `sitebar_acl` (
`gid` int(10) unsigned NOT NULL DEFAULT '0',
`nid` int(10) unsigned NOT NULL DEFAULT '0',
`allow_select` tinyint(1) NOT NULL DEFAULT '1',
`allow_update` tinyint(1) NOT NULL DEFAULT '0',
`allow_delete` tinyint(1) NOT NULL DEFAULT '0',
`allow_purge` tinyint(1) NOT NULL DEFAULT '0',
`allow_insert` tinyint(1) NOT NULL DEFAULT '0',
`allow_grant` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`gid`,`nid`),
KEY `IGID` (`gid`)
)
COMMENT='Access control list. Defines rights of groups to root nodes.';
CREATE TABLE `sitebar_config` (
`gid_admins` int(10) unsigned NOT NULL DEFAULT '1',
`gid_everyone` int(10) unsigned NOT NULL DEFAULT '2',
`release` varchar(10) NOT NULL DEFAULT '3.3.8',
`changed` datetime NOT NULL default '0000-00-00 00:00:00',
`params` text
)
COMMENT='Basic Sitebar parameters';
CREATE TABLE `sitebar_group` (
`gid` int(10) unsigned NOT NULL auto_increment,
`name` varchar(50) DEFAULT NULL,
`allow_addself` tinyint(1) NOT NULL DEFAULT '0',
`allow_contact` tinyint(1) NOT NULL DEFAULT '0',
`is_usergroup` tinyint(1) NOT NULL default '0',
`auto_join` text,
`comment` text,
PRIMARY KEY (`gid`)
)
COMMENT='Groups of users with auto join feature.';
CREATE TABLE `sitebar_link` (
`lid` int(10) unsigned NOT NULL auto_increment,
`nid` int(10) unsigned NOT NULL default '0',
`url` text NOT NULL,
`name` varchar(255) NOT NULL default '',
`private` tinyint(1) default '0',
`comment` longtext,
`favicon` text,
`added` datetime NOT NULL default '0000-00-00 00:00:00',
`changed` datetime NOT NULL default '0000-00-00 00:00:00',
`visited` datetime NOT NULL default '0000-00-00 00:00:00',
`tested` datetime NOT NULL default '0000-00-00 00:00:00',
`deleted_by` int(10) unsigned default NULL,
`is_dead` tinyint(1) NOT NULL default '0',
`is_feed` tinyint(1) NOT NULL default '0',
`is_sidebar` tinyint(1) NOT NULL default '0',
`hits` int(10) unsigned NOT NULL default '0',
`validate` tinyint(1) NOT NULL default '1',
`target` varchar(32),
`type` varchar(10) DEFAULT '',
PRIMARY KEY (`lid`),
UNIQUE KEY `name` (`nid`,`name`)
)
COMMENT='Each link must belong to a node.';
CREATE TABLE `sitebar_visit` (
`lid` int(10) unsigned NOT NULL,
`uid` int(10) unsigned NOT NULL,
`visited` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`lid`,`uid`)
)
COMMENT='Last link visit for each user';
CREATE TABLE `sitebar_member` (
`gid` int(10) unsigned NOT NULL DEFAULT '0',
`uid` int(10) unsigned NOT NULL DEFAULT '0',
`moderator` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`gid`,`uid`)
)
COMMENT='Membership';
CREATE TABLE `sitebar_node` (
`nid` int(10) unsigned NOT NULL auto_increment,
`nid_parent` int(10) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`comment` text,
`sort_mode` char(10) DEFAULT 'user',
`custom_order` text,
`type` varchar(10) DEFAULT '',
`deleted_by` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`nid`),
UNIQUE KEY `name` (`nid_parent`,`name`),
KEY `pnid` (`nid_parent`)
)
COMMENT='Node contains other nodes and links.';
CREATE TABLE `sitebar_root` (
`nid` int(10) unsigned NOT NULL DEFAULT '0',
`uid` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`nid`),
UNIQUE KEY `nid` (`nid`,`uid`)
)
COMMENT='Contains list of trees and their respective owners.';
CREATE TABLE `sitebar_user` (
`uid` int(10) unsigned NOT NULL auto_increment,
`username` varchar(50) NOT NULL default '',
`pass` varchar(32) default NULL,
`email` varchar(50) default NULL,
`name` varchar(50) default NULL,
`verified` tinyint(1) NOT NULL default '0',
`approved` tinyint(1) NOT NULL default '0',
`demo` tinyint(1) NOT NULL default '0',
`comment` text,
`params` text,
`visited` datetime NOT NULL default '0000-00-00 00:00:00',
`visits` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`uid`),
UNIQUE KEY `username` (`username`)
)
COMMENT='Users of the application.';
CREATE TABLE `sitebar_token` (
`uid` int(10) unsigned NOT NULL,
`type` varchar(10) DEFAULT '',
`issued` datetime NOT NULL default '0000-00-00 00:00:00',
`expires` int(11) NOT NULL DEFAULT '0',
`token` varchar(8) DEFAULT ''
)
COMMENT='Tokens for email validation, forgotten passwords, ...';
CREATE TABLE `sitebar_session` (
`uid` int(10) unsigned NOT NULL DEFAULT '0',
`code` varchar(32) NOT NULL DEFAULT '',
`created` datetime NOT NULL,
`expires` int(11) NOT NULL DEFAULT '0',
`ip` varchar(15) NOT NULL DEFAULT '',
PRIMARY KEY (`code`)
)
COMMENT='Session management';
CREATE TABLE `sitebar_cache` (
`type` varchar(10) NOT NULL,
`ckey` varchar(255) NOT NULL,
`cvalue` LONGBLOB NOT NULL,
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`expires` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`type`, `ckey`)
)
COMMENT='Contains multipurpose cache.';
CREATE TABLE `sitebar_data` (
`type` varchar(10) NOT NULL,
`dkey` varchar(255) NOT NULL,
`dvalue` LONGBLOB NOT NULL,
PRIMARY KEY (`type`, `dkey`)
)
COMMENT='Offers multipurpose data storage space.';
CREATE TABLE `sitebar_user_data` (
`type` varchar(10) NOT NULL,
`uid` int(10) unsigned NOT NULL,
`dkey` varchar(255) NOT NULL,
`dvalue` LONGBLOB NOT NULL,
PRIMARY KEY (`type`, `uid`, `dkey`)
)
COMMENT='Offers multipurpose user data storage space.';
/* INSERT DEFAULT DATA
- this data can be modified, however this is standard setup and
any change here might lead to malfunction of SiteBar 3.
*/
INSERT INTO `sitebar_config` VALUES();
INSERT INTO `sitebar_user` (`uid`, `username`, `comment`, `verified`, `approved`)
VALUES (1, 'Admin', 'Administrator of the system', 1, 1);
INSERT INTO `sitebar_user` (`uid`, `username`, `name`, `verified`, `approved`, `params`)
VALUES (2, 'Anonymous', 'Anonymous user', 1, 1, 'root_order=2~1');
INSERT INTO `sitebar_group` VALUES (1, 'Admins', 0, 0, 0, NULL, 'DEFAULT group for administrators');
INSERT INTO `sitebar_group` VALUES (2, 'Everyone', 1, 1, 0, '.*', 'DEFAULT public group');
INSERT INTO `sitebar_member` VALUES (1, 1, 1);
INSERT INTO `sitebar_member` VALUES (2, 1, 1);
INSERT INTO `sitebar_member` VALUES (2, 2, 0);
INSERT INTO `sitebar_node` (`nid`,`nid_parent`,`name`,`comment`)
VALUES (1, 0, 'Admin Bookmarks', 'Bookmarks of SiteBar Administrators');
INSERT INTO `sitebar_node` (`nid`,`nid_parent`,`name`,`comment`)
VALUES (2, 0, 'Public Bookmarks', NULL);
INSERT INTO `sitebar_node` (`nid`,`nid_parent`,`name`,`comment`, `sort_mode`)
VALUES (3, 2, 'SiteBar Project', 'Bookmarks related to the SiteBar open source project.', 'custom');
INSERT INTO `sitebar_node` (`nid`,`nid_parent`,`name`,`comment`, `sort_mode`)
VALUES (4, 2, 'Web Search', 'Type a search term in the toolbar and click on one of the links to search this term using that search engine. Using the SiteBar Sidebar Extension for Mozilla Firefox you can middle click on the folder to search all engines each in its own tab.', 'custom');
INSERT INTO `sitebar_root` VALUES (1, 1);
INSERT INTO `sitebar_root` VALUES (2, 1);
INSERT INTO `sitebar_acl` VALUES (1, 1, 1, 1, 1, 1, 1, 1);
INSERT INTO `sitebar_acl` VALUES (1, 2, 1, 1, 1, 1, 1, 1);
INSERT INTO `sitebar_acl` VALUES (2, 2, 1, 0, 0, 0, 0, 0);
|