Advertising
- headzoo
- Sunday, June 25th, 2006 at 3:22:56am MDT
- CREATE TABLE `hab_logs` (
- `id` bigint(20) NOT NULL AUTO_INCREMENT,
- `time` datetime NOT NULL,
- `referrer` tinytext collate latin1_general_ci NOT NULL,
- `ip` varchar(15) collate latin1_general_ci NOT NULL,
- `page_title` varchar(120) collate latin1_general_ci NOT NULL,
- `page_url` tinytext collate latin1_general_ci NOT NULL,
- PRIMARY KEY (`id`),
- KEY `time` (`time`,`ip`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=5 ;
- --
- -- Dumping data for table `hab_logs`
- --
- INSERT INTO `hab_logs` VALUES (1, '2006-06-16 00:33:57', 'http://seans/habanero/test.html', '192.168.1.104', 'Test Page', 'http://seans/habanero/test.html');
- INSERT INTO `hab_logs` VALUES (2, '2006-06-24 00:33:57', 'http://seans/habanero/test.html', '192.168.1.105', 'Test Page', 'http://seans/habanero/test.html');
- INSERT INTO `hab_logs` VALUES (3, '2006-06-25 00:33:57', 'http://seans/habanero/test.html', '192.168.1.104', 'Test Page', 'http://seans/habanero/test.html');
- INSERT INTO `hab_logs` VALUES (4, '2006-06-25 00:33:57', 'http://seans/habanero/test.html', '192.168.1.104', 'Test Page', 'http://seans/habanero/test.html');
- -- --------------------------------------------------------
- --
- -- Table structure for table `hab_options`
- --
- CREATE TABLE `hab_options` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `key` varchar(45) collate latin1_general_ci NOT NULL,
- `value` text collate latin1_general_ci NOT NULL,
- `type` enum('string','int','array','bool','object','float') collate latin1_general_ci NOT NULL DEFAULT 'string',
- PRIMARY KEY (`id`),
- KEY `key` (`key`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=9 ;
- --
- -- Dumping data for table `hab_options`
- --
- INSERT INTO `hab_options` VALUES (1, 'site_url', 'http://seans/habanero', 'string');
- INSERT INTO `hab_options` VALUES (2, 'ignore_ip', '127.0.0.2', 'string');
- -- --------------------------------------------------------
- --
- -- Table structure for table `hab_users`
- --
- CREATE TABLE `hab_users` (
- `id` tinyint(4) NOT NULL AUTO_INCREMENT,
- `username` varchar(12) collate latin1_general_ci NOT NULL,
- `password` varchar(32) collate latin1_general_ci NOT NULL,
- `email` varchar(120) collate latin1_general_ci NOT NULL,
- PRIMARY KEY (`id`),
- KEY `username` (`username`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
- --
- -- Dumping data for table `hab_users`
- --
- INSERT INTO `hab_users` VALUES (1, 'admin', 'xx', 'seanhickey@gmail.com');
advertising
Update the Post
Either update this post and resubmit it with changes, or make a new post.
You may also comment on this post.
Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.