Jika Anda memasang modul melalui komposer, Anda dapat membuat Setup/Uninstall.php
file yang akan dieksekusi saat dijalankan bin/magento module:uninstall -r [Namespace]_[Module]
.
The Uninstall.php
file harus terlihat seperti ini:
<?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');
}
}
}
Jika Anda menginstal modul secara manual, Anda perlu membersihkan database Anda secara manual juga membeli menjatuhkan tabel yang ditambahkan modul.