Jawaban:
Dalam skrip pengaturan Anda, kami dapat menggunakan dropColumn
:
$setup->getConnection()->dropColumn($setup->getTable('your_table'), 'your_column');
Inilah solusi saya, mungkin baik untuk merujuk untuk yang lain.
Saya membuat Tohq\Customer\Setup\UpgradeSchema.php
file:
<?php
namespace Tohq\Customer\Setup;
use Magento\Framework\Setup\UpgradeSchemaInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\SchemaSetupInterface;
/**
* @codeCoverageIgnore
*/
class UpgradeSchema implements UpgradeSchemaInterface
{
public function upgrade(SchemaSetupInterface $setup, ModuleContextInterface $context)
{
// Version of module in setup table is less then the give value.
if (version_compare($context->getVersion(), '0.1.4', '<')) {
// get table customer_entity
$eavTable = $setup->getTable('customer_entity');
// Check if the table already exists
if ($setup->getConnection()->isTableExists($eavTable) == true) {
$connection = $setup->getConnection();
// del_flg = column name which you want to delete
$connection->dropColumn($eavTable, 'del_flg');
}
}
}
}
Path: Magento22 / app / code / Aks / Pelatihan / etc / module.xml
<?xml version="1.0" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Aks_Training" setup_version="1.0.2"/>
</config>
Buat file UpgradeSchema.php di bawah folder Pengaturan di modul Anda.
Path: Magento22 / app / code / Aks / Pelatihan / Setup / UpgradeSchema.php
<?php
namespace Aks\Training\Setup;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\SchemaSetupInterface;
use Magento\Framework\Setup\UpgradeSchemaInterface;
/**
* Upgrade the Sales_Order Table to remove extra field
*/
class UpgradeSchema implements UpgradeSchemaInterface
{
public function upgrade(SchemaSetupInterface $setup, ModuleContextInterface $context)
{
$setup->startSetup();
if (version_compare($context->getVersion(), '1.0.2', '<')) {
$setup->getConnection()->dropColumn($setup->getTable('sales_order'), 'gst');
}
$setup->endSetup();
}
}
Saya harap ini berhasil selamanya
UpgradeSchema.php
adalah solusi yang lebih baik dan lebih bersih