| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/SalesRule/sql/salesrule_setup/ |
Upload File : |
<?php
/**
* Magento
*
* 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@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_SalesRule
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
$installer = $this;
/* @var $installer Mage_Core_Model_Resource_Setup */
$installer->startSetup();
$installer->run("
-- DROP TABLE IF EXISTS {$this->getTable('salesrule')};
CREATE TABLE {$this->getTable('salesrule')} (
`rule_id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`description` text NOT NULL,
`from_date` date default '0000-00-00',
`to_date` date default '0000-00-00',
`store_ids` varchar(255) NOT NULL default '',
`coupon_code` varchar(255) default NULL,
`uses_per_coupon` smallint(11) NOT NULL default '0',
`uses_per_customer` smallint(11) NOT NULL default '0',
`customer_group_ids` varchar(255) NOT NULL default '',
`is_active` tinyint(1) NOT NULL default '0',
`conditions_serialized` text NOT NULL,
`actions_serialized` text NOT NULL,
`stop_rules_processing` tinyint(1) NOT NULL default '1',
`is_advanced` tinyint(3) unsigned NOT NULL default '1',
`product_ids` text,
`sort_order` int(10) unsigned NOT NULL default '0',
`simple_action` varchar(32) NOT NULL default '',
`discount_amount` decimal(12,4) NOT NULL default '0.0000',
`discount_qty` decimal(12,4) unsigned default NULL,
`simple_free_shipping` tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (`rule_id`),
KEY `sort_order` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- DROP TABLE IF EXISTS {$this->getTable('salesrule_customer')};
CREATE TABLE {$this->getTable('salesrule_customer')} (
`rule_customer_id` int(10) unsigned NOT NULL auto_increment,
`rule_id` int(10) unsigned NOT NULL default '0',
`customer_id` int(10) unsigned NOT NULL default '0',
`times_used` smallint(11) unsigned NOT NULL default '0',
PRIMARY KEY (`rule_customer_id`),
KEY `rule_id` (`rule_id`,`customer_id`),
KEY `customer_id` (`customer_id`,`rule_id`),
CONSTRAINT `FK_salesrule_customer_id` FOREIGN KEY (`customer_id`) REFERENCES {$this->getTable('customer_entity')} (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_salesrule_customer_rule` FOREIGN KEY (`rule_id`) REFERENCES {$this->getTable('salesrule')} (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- DROP TABLE IF EXISTS {$this->getTable('salesrule_product')};
CREATE TABLE {$this->getTable('salesrule_product')} (
`rule_product_id` int(10) unsigned NOT NULL auto_increment,
`rule_id` int(10) unsigned NOT NULL default '0',
`from_time` int(10) unsigned NOT NULL default '0',
`to_time` int(10) unsigned NOT NULL default '0',
`store_id` smallint(5) unsigned NOT NULL default '0',
`customer_group_id` smallint(5) unsigned NOT NULL default '0',
`product_id` int(10) unsigned NOT NULL default '0',
`coupon_code` varchar(255) default NULL,
`sort_order` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`rule_product_id`),
UNIQUE KEY `sort_order` (`from_time`,`to_time`,`store_id`,`customer_group_id`,`product_id`,`coupon_code`,`sort_order`),
KEY `FK_salesrule_product_rule` (`rule_id`),
KEY `FK_salesrule_product_store` (`store_id`),
KEY `FK_salesrule_product_customergroup` (`customer_group_id`),
CONSTRAINT `FK_salesrule_product_customergroup` FOREIGN KEY (`customer_group_id`) REFERENCES {$this->getTable('customer_group')} (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_salesrule_product_rule` FOREIGN KEY (`rule_id`) REFERENCES {$this->getTable('salesrule')} (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `FK_salesrule_product_store` FOREIGN KEY (`store_id`) REFERENCES {$this->getTable('core_store')} (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- DROP TABLE IF EXISTS {$this->getTable('salesrule_product_action')};
CREATE TABLE {$this->getTable('salesrule_product_action')} (
`rule_product_action_id` int(10) unsigned NOT NULL auto_increment,
`rule_product_id` int(10) unsigned NOT NULL default '0',
`action_type` varchar(255) NOT NULL default '',
`action_attribute` varchar(255) NOT NULL default '',
`action_operator` varchar(255) NOT NULL default '',
`action_value` varchar(255) NOT NULL default '',
PRIMARY KEY (`rule_product_action_id`),
KEY `rule_product_id` (`rule_product_id`),
CONSTRAINT `salesrule_product_action_ibfk_1` FOREIGN KEY (`rule_product_id`) REFERENCES {$this->getTable('salesrule_product')} (`rule_product_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
");
$installer->endSetup();