Rev 26 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
-- MySQL dump 10.13 Distrib 5.1.66, for debian-linux-gnu (i486)
--
-- Host: localhost Database: camp
-- ------------------------------------------------------
-- Server version 5.1.66-0+squeeze1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `menu`
--
DROP TABLE IF EXISTS `menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `menu` (
`menu_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned DEFAULT NULL COMMENT 'If this is a submenu the id of the parent',
`caption` varchar(20) NOT NULL COMMENT 'The actual caption displayed',
`url` varchar(120) DEFAULT NULL COMMENT 'the url of the page/script to call or null if this contains sub-options',
PRIMARY KEY (`menu_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COMMENT='We keep the entire menu structure here so modules can modify';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `menu`
--
LOCK TABLES `menu` WRITE;
/*!40000 ALTER TABLE `menu` DISABLE KEYS */;
INSERT INTO `menu` VALUES (1,NULL,'Home Page','/index.html'),(2,NULL,'Reports','/reports.html'),(3,NULL,'Backup','/backup.html'),(4,NULL,'SysInfo','/modules/sysinfo/index.html'),(5,4,'Manual Upload','/modules/sysinfo/index.html'),(6,4,'Unknowns','/modules/sysinfo/process_unknowns.html'),(7,4,'Download'
,'/modules/sysinfo/get_client.html'),(8,NULL,'Maintenance',''),(9,8,'Scheduled Maintenanc','/modules/maintenance/do_maintenance.html'),(10,8,'Unscheduled Maintena','/modules/maintenance/unscheduled_maintenance.html'),(11,8,'Edit Schedules','/modules/maintenance/edit_schedule.html');
/*!40000 ALTER TABLE `menu` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2013-05-23 1:53:30