summaryrefslogtreecommitdiffstats
path: root/apps/files_versions/appinfo/update.php
blob: ee6d3c14c9ac582c00097059bf09919b9fc26d96 (plain)
1
2
3
4
5
6
7
8
<?php

$installedVersion=OCP\Config::getAppValue('files_versions', 'installed_version');
// move versions to new directory
if (version_compare($installedVersion, '1.0.4', '<')) {
	$query = \OCP\DB::prepare("DROP TABLE `*PREFIX*files_versions`");
	$query->execute(array());
}