namespace ; use Craft; use craft\db\Migration; /** * migration. */ class extends Migration { /** * @inheritdoc */ public function safeUp(): bool { // Place installation code here... // Place migration code here... return true; } /** * @inheritdoc */ public function safeDown(): bool { // Place uninstallation code here... return true; echo " cannot be reverted.\n"; return false; } }