| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/leve/application/plugins/module_cms/install/ |
Upload File : |
DROP TABLE IF EXISTS `module_cms_image`; CREATE TABLE `module_cms_image` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, `path` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `module_cms_category`; CREATE TABLE `module_cms_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `description` text, `status` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `module_cms_poll`; CREATE TABLE `module_cms_poll` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text, `polls` text, `status` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `module_cms_article`; CREATE TABLE `module_cms_article` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `text` text, `status` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, `cms_category_id` int(11) DEFAULT NULL, `cms_image_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_cms_article_cms_category1_idx` (`cms_category_id`), KEY `fk_cms_article_cms_image1_idx` (`cms_image_id`), CONSTRAINT `fk_cms_article_cms_category1` FOREIGN KEY (`cms_category_id`) REFERENCES `module_cms_category` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_module_cms_article_module_cms_image1` FOREIGN KEY (`cms_image_id`) REFERENCES `module_cms_image` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `module_cms_article_metadata`; CREATE TABLE `module_cms_article_metadata` ( `id` int(11) NOT NULL AUTO_INCREMENT, `key` varchar(255) DEFAULT NULL, `value` text, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, `cms_article_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_cms_article_metadata_cms_article_idx` (`cms_article_id`), CONSTRAINT `fk_cms_article_metadata_cms_article` FOREIGN KEY (`cms_article_id`) REFERENCES `module_cms_article` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=latin1;