Your IP : 216.73.216.68


Current Path : /home/sunflowe/www2/vacancesfloride/_AncienSite/administrator/components/com_ckforms/
Upload File :
Current File : /home/sunflowe/www2/vacancesfloride/_AncienSite/administrator/components/com_ckforms/install.sql

create table if not exists #__ckforms
(
   id                           int(11) not null AUTO_INCREMENT,
   name                         text,
   title                        text,
   description                  longtext,
   emailfrom                    text,
   emailto                      text,
   emailcc                      text,
   emailbcc                     text,
   subject						text,	
   created                      datetime,
   created_by                   int(11),
   hits                         int(11),
   published                    tinyint,
   saveresult                   tinyint,
   emailresult                  tinyint,
   textresult                   longtext,
   redirecturl					text,
   redirectdata					tinyint,
   captcha                    	tinyint,
   captchacustominfo		    text,
   captchacustomerror		    text,
   customjs						text,	
   uploadpath					text,
   maxfilesize					int,
   poweredby                   	tinyint,
   emailreceipt                 tinyint,
   emailreceipttext             longtext,
   emailreceiptsubject			text,
   emailreceiptincfield         tinyint,
   emailreceiptincfile          tinyint,
   emailresultincfile           tinyint,
   formCSSclass					text,
   displayip		            tinyint,
   displaydetail		        tinyint,
   fronttitle                   text,
   frontdescription             longtext,
   autopublish					tinyint,
   primary key (id)
) ENGINE=MyISAM AUTO_INCREMENT=0;

create table if not exists #__ckfields
(
   id                           int(11) not null AUTO_INCREMENT,
   fid                          int(11),
   name                         text,
   label                  	    text,
   typefield                    text,
   defaultvalue					text,
   mandatory                    tinyint,
   test_validity                tinyint,
   published                    tinyint,
   ordering                     int(11) not null DEFAULT 0, 
   custominfo					text,
   customerror					text,
   customvalidation				text,
   readonly                		tinyint,
   labelCSSclass				text,
   fieldCSSclass				text,
   textseparator				text,
   customtext					text,
   customtextCSSclass			text,
   frontdisplay					tinyint,
   fillwith						text,
   primary key (id)
) ENGINE=MyISAM AUTO_INCREMENT=0;

create table if not exists #__ckprofiles
(
   id                           int(11) not null AUTO_INCREMENT,
   formid                       int(11),
   name                        	text,
   title                        text,
   description                  longtext,
   published                    tinyint,
   created                      datetime,
   created_by                   int(11),
   primary key (id)
) ENGINE=MyISAM AUTO_INCREMENT=0;

create table if not exists #__ckprofilefields
(
   id                           int(11) not null AUTO_INCREMENT,
   profileid                    int(11),
   fieldid                      text,
   customlabel             	    text,
   defaultvalue					text,
   published                    tinyint,
   ordering                     int(11) not null DEFAULT 0, 
   created                      datetime,
   created_by                   int(11),
   primary key (id)
) ENGINE=MyISAM AUTO_INCREMENT=0;