Nếu bạn cài đặt mô-đun thông qua trình soạn thảo, bạn có thể tạo Setup/Uninstall.php
tệp sẽ được thực thi khi chạy bin/magento module:uninstall -r [Namespace]_[Module]
.
Các Uninstall.php
tập tin sẽ trông như thế này:
<?php
namespace Namespace\Module\Setup;
class Uninstall implements \Magento\Framework\Setup\UninstallInterface
{
public function uninstall(
\Magento\Framework\Setup\SchemaSetupInterface $setup,
\Magento\Framework\Setup\ModuleContextInterface $context
) {
if ($setup->tableExists('table_name_here')) {
$setup->getConnection()->dropTable('table_name_here');
}
}
}
Nếu bạn đã cài đặt mô-đun theo cách thủ công, bạn sẽ cần dọn dẹp cơ sở dữ liệu của mình theo cách thủ công cũng mua thả các bảng mà mô-đun đã thêm.