Zoeken…


Invoering

Aangepaste attributen voor verkoop, categorie, etc.

Verkoopkenmerk

Aangepast kenmerk in verkoopgerelateerde tabellen zoals: sales_flat_quote, sales_flat_order_item, sales_flat_order, etc tabel

In uw installatiebestand 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();
 ?>

Een andere manier om het te doen is:

<?php
$installer = $this;
$installer->startSetup();
$installer->run("ALTER TABLE sales_flat_order_item ADD COLUMN 'custom_field' DECIMAL(12,4) NULL;");
$installer->endSetup();
?>

Zorg ervoor dat u het cachegeheugen hierna leegmaakt.



Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow