[COLOR=#252C2F][FONT=Courier]# phpMyAdmin SQL Dump[/FONT][/COLOR]# version 2.5.6-rc1
# http://www.phpmyadmin.net
#
# Host: localhost
# Generation Time: May 25, 2004 at 07:37 PM
# Server version: 4.0.18
# PHP Version: 4.2.3
#
# Database : `opticala_vb3beta`
#
# --------------------------------------------------------
#
# Table structure for table `cron`
#
DROP TABLE IF EXISTS `cron`;
CREATE TABLE `cron` (
`cronid` int(10) unsigned NOT NULL auto_increment,
`nextrun` int(10) unsigned NOT NULL default '0',
`weekday` smallint(6) NOT NULL default '0',
`day` smallint(6) NOT NULL default '0',
`hour` smallint(6) NOT NULL default '0',
`minute` smallint(6) NOT NULL default '0',
`filename` varchar(50) NOT NULL default '',
`loglevel` smallint(6) NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
PRIMARY KEY (`cronid`),
KEY `nextrun` (`nextrun`)
) TYPE=MyISAM AUTO_INCREMENT=13 ;
#
# Dumping data for table `cron`
#
INSERT INTO `cron` VALUES (1, 1085544060, -1, -1, 0, 1, './includes/cron/birthday.php', 1, 'Happy Birthday Email');
INSERT INTO `cron` VALUES (2, 1085507760, -1, -1, -1, 56, './includes/cron/threadviews.php', 0, 'Thread Views');
INSERT INTO `cron` VALUES (3, 1085509500, -1, -1, -1, 25, './includes/cron/promotion.php', 1, 'User Promotions');
INSERT INTO `cron` VALUES (4, 1085544120, -1, -1, 0, 2, './includes/cron/digestdaily.php', 1, 'Daily Digest');
INSERT INTO `cron` VALUES (5, 1085459400, 1, -1, 0, 30, './includes/cron/digestweekly.php', 1, 'Weekly Digest');
INSERT INTO `cron` VALUES (6, 1085544120, -1, -1, 0, 2, './includes/cron/subscriptions.php', 1, 'Subscriptions');
INSERT INTO `cron` VALUES (7, 1085508300, -1, -1, -1, 5, './includes/cron/cleanup.php', 0, 'Hourly Cleanup #1');
INSERT INTO `cron` VALUES (8, 1085508600, -1, -1, -1, 10, './includes/cron/attachmentviews.php', 0, 'Attachment Views');
INSERT INTO `cron` VALUES (9, 1085544180, -1, -1, 0, 3, './includes/cron/activate.php', 1, 'Activation Reminder Email');
INSERT INTO `cron` VALUES (10, 1085508900, -1, -1, -1, 15, './includes/cron/removebans.php', 1, 'Restore Temporarily Banned Users');
INSERT INTO `cron` VALUES (11, 1085509200, -1, -1, -1, 20, './includes/cron/cleanup2.php', 0, 'Hourly Cleanup #2'); [COLOR=#252C2F][FONT=Courier]INSERT INTO `cron` VALUES (12, 1085544000, -1, -1, 0, 0, './includes/cron/stats.php', 0, 'Daily Statistics Log');[CODE]