magento
कस्टम विशेषताएँ
खोज…
परिचय
बिक्री, श्रेणी आदि के लिए कस्टम विशेषताएँ
बिक्री विशेषता
बिक्री से संबंधित तालिकाओं में कस्टम विशेषता: sales_flat_quote, sales_flat_order_item, sales_flat_order, आदि तालिका
अपनी स्थापना फ़ाइल में sql / some_setup / mysql-install-0.1.0.php:
<?php
$installer = $this;
$installer->startSetup();
$installer->addAttribute('quote', 'custom_field', array('type' => 'varchar'));
$installer->addAttribute('order', 'custom_field', array('type' => 'varchar'));
$installer->endSetup();
?>
इसे करने का दूसरा तरीका है:
<?php
$installer = $this;
$installer->startSetup();
$installer->run("ALTER TABLE sales_flat_order_item ADD COLUMN 'custom_field' DECIMAL(12,4) NULL;");
$installer->endSetup();
?>
इसके बाद कैश क्लियर करना सुनिश्चित करें।
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow