do_not_run_on_fresh_install( $version ); } /** * @throws Migration_Exception */ public function up() { try { $client = $this->api_wrapper->get_client(); $options = $this->storage->get_options(); if ( $client->hasCard() ) { $options->set_premium_plan(); } else { $options->set_basic_plan(); } } catch ( Account_Exception $e ) { } } }