ฉันพยายามเพิ่มคอลัมน์ใหม่ลงในตารางที่มีอยู่ใน magento2
<?php
namespace Vendor\Module\Setup;
use Magento\Framework\Setup\InstallSchemaInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\SchemaSetupInterface;
/**
* @codeCoverageIgnore
*/
class InstallSchema implements InstallSchemaInterface
{
/**
* {@inheritdoc}
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)
{
$installer = $setup;
$installer->startSetup();
$eavTable = $installer->getTable('eav_attribute');
$columns = [
'my_column' => [
'type' => \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER,
'length' => '1',
'nullable' => false,
'comment' => 'Description of my column',
],
];
$connection = $installer->getConnection();
foreach ($columns as $name => $definition) {
$connection->addColumn($eavTable, $name, $definition);
}
$installer->endSetup();
}
}
php bin / magento setup: upgrade
ไม่มีอะไรเกิดขึ้น
อัปเดต 1
หากฉันเข้าใจเป้าหมายอย่างชัดเจน InstallSchema จะดำเนินการเฉพาะเมื่อไม่มีค่าใด ๆ ในตารางการตั้งค่า หากโมดูลของคุณติดตั้งอยู่ในระบบแล้ว - คุณต้องทำการเปลี่ยนแปลงใด ๆ ใน UpgradeSchema นั่นเป็นเพราะไฟล์ของฉันไม่ได้ทำงาน เมื่อฉันเปลี่ยนชื่อมันเพื่ออัพเกรดและทำการเปลี่ยนแปลงที่จำเป็น - ทุกอย่างเริ่มทำงานอย่างถูกต้อง