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

$stmt = OCP\DB::prepare('DROP TABLE IF EXISTS *PREFIX*gallery_photos');
$stmt->execute();
$stmt = OCP\DB::prepare('DROP TABLE IF EXISTS *PREFIX*gallery_albums');
$stmt->execute();

\OC_DB::createDbFromStructure('./database.xml');