setAliases(['october:down', 'migrate:reset']); } /** * Execute the console command. */ public function handle(): int { if (!$this->confirmWithInput( "This will completely delete all database tables in use with your Winter installation.", "DELETE" )) { return 1; } UpdateManager::instance() ->setNotesOutput($this->output) ->uninstall(); return 0; } }