migration = $factory; } public function getMigrations(Updater $updater) { return array( $this->migration->db->addColumn('site', 'keep_url_fragment', 'TINYINT NOT NULL DEFAULT 0', 'group') ); } public function doUpdate(Updater $updater) { $updater->executeMigrations(__FILE__, $this->getMigrations($updater)); } }