Your IP : 216.73.216.68


Current Path : /home/jeromecohp/www/administrator/components/com_emailbeautifier/sql/
Upload File :
Current File : /home/jeromecohp/www/administrator/components/com_emailbeautifier/sql/install.sql

CREATE TABLE IF NOT EXISTS `#__eb_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255)  NOT NULL,
  `conditions` text  NOT NULL,
  `template` text  NOT NULL,
  `template_css` text  NOT NULL,
  `published` tinyint(1) NOT NULL,
  `isDefault` tinyint(1) NOT NULL,
  `layout` text  NOT NULL,
  `params` text  NOT NULL,
  `advance_condition` tinyint(1) NOT NULL DEFAULT '0',
  `language` char(7) NOT NULL DEFAULT '*',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1;