Files
lulandia.pl/modules/ybc_blog_free/install/sql.php
2025-04-01 00:38:54 +02:00

142 lines
5.4 KiB
PHP

<?php
/**
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2016 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version Release: $Revision$
* International Registered Trademark & Property of PrestaShop SA
*/
if (!defined('_PS_VERSION_'))
exit;
$sqls = array();
$sqls[] = "
CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_category` (
`id_category` int(10) unsigned NOT NULL AUTO_INCREMENT,
`image` varchar(500) NOT NULL,
`added_by` int(11) DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`enabled` tinyint(1) NOT NULL DEFAULT '1',
`datetime_added` datetime DEFAULT NULL,
`datetime_modified` datetime DEFAULT NULL,
`sort_order` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id_category`)
)
";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_category_lang` (
`id_category` int(11) DEFAULT NULL,
`id_lang` int(11) DEFAULT NULL,
`title` varchar(2000) CHARACTER SET utf8 DEFAULT NULL,
`description` text CHARACTER SET utf8,
`url_alias` varchar(700) NOT NULL,
`meta_keywords` varchar(5000) CHARACTER SET utf8 DEFAULT NULL,
`meta_description` text CHARACTER SET utf8
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_comment` (
`id_comment` int(10) unsigned NOT NULL AUTO_INCREMENT,
`id_user` int(11) DEFAULT NULL,
`name` varchar(5000) CHARACTER SET utf8 DEFAULT NULL,
`email` varchar(5000) CHARACTER SET utf8 DEFAULT NULL,
`id_post` int(11) DEFAULT NULL,
`subject` varchar(2000) CHARACTER SET utf8 DEFAULT NULL,
`comment` text CHARACTER SET utf8,
`reply` text CHARACTER SET utf8,
`replied_by` int(11) DEFAULT NULL,
`rating` int(11) NOT NULL DEFAULT '0',
`approved` tinyint(1) NOT NULL DEFAULT '1',
`datetime_added` datetime DEFAULT NULL,
`reported` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id_comment`)
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_gallery` (
`id_gallery` int(10) unsigned NOT NULL AUTO_INCREMENT,
`image` varchar(1000) DEFAULT NULL,
`is_featured` tinyint(1) NOT NULL DEFAULT '1',
`enabled` tinyint(1) NOT NULL DEFAULT '1',
`sort_order` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id_gallery`)
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_gallery_lang` (
`id_gallery` int(11) NOT NULL,
`id_lang` int(11) NOT NULL,
`title` varchar(1000) DEFAULT NULL,
`description` text
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_post` (
`id_post` int(10) unsigned NOT NULL AUTO_INCREMENT,
`is_featured` tinyint(1) NOT NULL DEFAULT '0',
`products` varchar(1000) DEFAULT NULL,
`thumb` varchar(1000) DEFAULT NULL,
`image` varchar(500) NOT NULL,
`added_by` int(11) DEFAULT NULL,
`modified_by` int(11) DEFAULT NULL,
`enabled` tinyint(1) NOT NULL DEFAULT '1',
`datetime_added` datetime DEFAULT NULL,
`datetime_modified` datetime DEFAULT NULL,
`datetime_active` date DEFAULT NULL,
`sort_order` int(11) NOT NULL DEFAULT '1',
`click_number` int(11) NOT NULL DEFAULT '0',
`likes` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id_post`)
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_post_category` (
`id_post` int(11) DEFAULT NULL,
`id_category` int(11) DEFAULT NULL
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_post_lang` (
`id_post` int(11) DEFAULT NULL,
`id_lang` int(11) DEFAULT NULL,
`title` varchar(2000) CHARACTER SET utf8 DEFAULT NULL,
`url_alias` varchar(700) NOT NULL,
`description` text CHARACTER SET utf8,
`short_description` text CHARACTER SET utf8,
`meta_keywords` varchar(5000) CHARACTER SET utf8 DEFAULT NULL,
`meta_description` text CHARACTER SET utf8
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_slide` (
`id_slide` int(10) unsigned NOT NULL AUTO_INCREMENT,
`image` varchar(1000) DEFAULT NULL,
`enabled` tinyint(1) NOT NULL DEFAULT '1',
`sort_order` int(10) NOT NULL DEFAULT '1',
PRIMARY KEY (`id_slide`)
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_slide_lang` (
`id_slide` int(11) NOT NULL,
`id_lang` int(11) NOT NULL,
`url` varchar(1000) DEFAULT NULL,
`caption` varchar(5000) CHARACTER SET utf8 NOT NULL
)";
$sqls[] = "CREATE TABLE IF NOT EXISTS `"._DB_PREFIX_."ybc_blog_free_tag` (
`id_tag` int(10) unsigned NOT NULL AUTO_INCREMENT,
`id_post` int(11) DEFAULT NULL,
`id_lang` int(11) DEFAULT NULL,
`tag` varchar(200) CHARACTER SET utf8 DEFAULT NULL,
`click_number` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id_tag`)
)";
if($sqls)
{
foreach($sqls as $sql)
{
Db::getInstance()->execute($sql);
}
}