release; } /** * {@inheritdoc} */ public function getDoctrineMigrations() { return []; } /** * {@inheritdoc} */ public function require_all_upgrades() { return false; } /** * {@inheritdoc} */ public function concern() { return $this->concern; } /** * {@inheritdoc} */ public function apply(base $databox, Application $app) { $sql = "UPDATE metadatas_structure SET type = 'string' where type = 'text' OR type = '' "; $databox->get_connection()->executeQuery($sql); return true; } }