site_module_access
CREATE TABLE IF NOT EXISTS `{PREFIX}site_module_access` (
`id` integer UNSIGNED NOT NULL AUTO_INCREMENT,
`module` integer NOT NULL DEFAULT 0,
`usergroup` integer NOT NULL DEFAULT 0,
PRIMARY KEY(`id`)
) ENGINE=MyISAM COMMENT='Module users group access permission';