Your IP : 216.73.216.55


Current Path : /home/g/i/t/giteleslfp/www/administrator/components/com_templateck/sql/
Upload File :
Current File : /home/g/i/t/giteleslfp/www/administrator/components/com_templateck/sql/install.mysql.utf8.sql

CREATE TABLE IF NOT EXISTS `#__templateck_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `joomlaversion` text NOT NULL,
  `name` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` int(11) NOT NULL DEFAULT '1',
  `creationdate` varchar(255) NOT NULL,
  `author` varchar(255) NOT NULL,
  `authoremail` varchar(255) NOT NULL,
  `authorurl` varchar(255) NOT NULL,
  `copyright` varchar(255) NOT NULL,
  `license` varchar(255) NOT NULL,
  `version` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `htmlcode` longtext NOT NULL,
  `stylecode` longtext NOT NULL,
  `theme` text NOT NULL,
  `cssparams` text NOT NULL,
  `options` text NOT NULL,
  `htmlcode_responsive` longtext NOT NULL,
  `widgets` text NOT NULL,
  `modules` text NOT NULL,
  PRIMARY KEY (`id`)
);


INSERT IGNORE INTO `#__templateck_templates` (`id`, `joomlaversion`, `name`, `ordering`, `published`, `creationdate`, `author`, `authoremail`, `authorurl`, `copyright`, `license`, `version`, `description`, `htmlcode`, `stylecode`,`theme`, `cssparams`, `options`, `htmlcode_responsive`, `widgets`, `modules`) VALUES
(1, 'j3', 'templatecreator_blank', 0, 1, '08/03/13', 'Cedric KEIFLIN', '', 'http://www.joomlack.fr', 'Cedric KEIFLIN', 'GNU/GPL', '1.0.0', 'Demo template for Template Creator CK v3', '', '', '', '', '', '', '', '');


CREATE TABLE IF NOT EXISTS `#__templateck_fonts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL,
  `styles` text NOT NULL,
  `fontfamilies` text NOT NULL,
  `additional_fonts` text NOT NULL,
  `published` int(11) NOT NULL DEFAULT '1',
  `subset` text NOT NULL,
  `alternatives` text NOT NULL,
  PRIMARY KEY (`id`)
);

CREATE TABLE IF NOT EXISTS `#__templateck_layouts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_id` int(11) NOT NULL,
  `type` text NOT NULL,
  `htmlcode` longtext NOT NULL,
  `styles` text NOT NULL,
  `published` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
);