How should i add it to Nivacat

Paradocs

LieWise Developer!
May 10, 2011
117
7
i got new error after old one how can i fix or add in Navicat!
Code:
Table 'test.site_cron' doesn't exist
 

TheCanadian

Jordan behind you ;P
Mar 21, 2011
208
102
how should it be vachar or wat

CREATE TABLE IF NOT EXISTS `site_cron` (
`id` int(11) NOT NULL auto_increment,
`prio` int(11) NOT NULL default '5',
`enabled` enum('0','1') NOT NULL default '1',
`scriptfile` varchar(50) NOT NULL,
`last_exec` int(11) NOT NULL,
`exec_every` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;

--
-- Extraindo dados da tabela `site_cron`
--

INSERT INTO `site_cron` (`id`, `prio`, `enabled`, `scriptfile`, `last_exec`, `exec_every`) VALUES
(1, 5, '1', 'mod_forum.php', 1277927521, 7200),
(2, 4, '1', 'moderation_cleanup.php', 1277927521, 7200),
(3, 5, '1', 'respect.php', 1277927521, 86400),
(4, 5, '1', 'serverstat.php', 1277931156, 120),
(5, 3, '1', 'credits.php', 1277927521, 10800);
 

Users who are viewing this thread

Top