수색…


소개

판매, 카테고리 등에 대한 맞춤 속성

영업 속성

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