update.php 303 B

12345678910
  1. <?php
  2. $installedVersion=OCP\Config::getAppValue('files_trashbin', 'installed_version');
  3. if (version_compare($installedVersion, '0.6', '<')) {
  4. //size of the trash bin could be incorrect, remove it for all users to
  5. //enforce a recalculation during next usage.
  6. \OC_DB::dropTable('files_trashsize');
  7. }