db->dbprefix; if ($this->db->dbdriver == 'postgre') { $this->db->query(' ALTER TABLE "'.$prefix.'file_storage" ALTER "filesize" TYPE bigint; '); } else { $this->db->query(' ALTER TABLE `'.$prefix.'file_storage` MODIFY `filesize` bigint; '); } } public function down() { throw new \exceptions\ApiException("migration/downgrade-not-supported", "downgrade not supported"); } }