| Current Path : /home/sunflowe/www2/j15/administrator/components/com_easycaptcha/ |
| Current File : /home/sunflowe/www2/j15/administrator/components/com_easycaptcha/install.nonutf8.sql |
DROP TABLE IF EXISTS `#__easycaptchas`;
DROP TABLE IF EXISTS `#__easycaptchas_dpaulus`;
DROP TABLE IF EXISTS `#__easycaptchas_secimg`;
DROP TABLE IF EXISTS `#__easycaptcha_config`;
CREATE TABLE IF NOT EXISTS `#__easycaptchas` (
`id` int(10) NOT NULL auto_increment,
`name` varchar(70) NOT NULL default '0',
`description` text,
`published` tinyint(3) NOT NULL default '0',
`params` text,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS `#__easycaptchas_dpaulus` (
`CodeID` varchar(6) NOT NULL default '',
`CodeMD5` varchar(32) NOT NULL default '',
`codedate` decimal(14,0) NOT NULL default '0',
PRIMARY KEY (`CodeID`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS `#__easycaptchas_secimg` (
`CodeID` varchar(6) NOT NULL default '',
`ImageID` varchar(32) NOT NULL default '',
`codedate` decimal(14,0) NOT NULL default '0',
PRIMARY KEY (`CodeID`)
) TYPE=MyISAM;
INSERT INTO `#__easycaptchas` (`id`, `name`, `description`, `published`, `params`) VALUES (1, 'Secimg-Captcha', 'This captcha generates an image with a small mathematic task, which has to be solved by the user. This Captcha does not require any graphic librarys.', 0, 'random_min=100000\r\nrandom_max=999999');
INSERT INTO `#__easycaptchas` (`id`, `name`, `description` , `published`, `params`) VALUES (2, 'Dpaulus-Captcha','This captcha generates an image with several numbers which have to be entered. This Captcha requires the GD library with freetype-support.', 1, 'random_min=100000\r\nrandom_max=999999');