diff options
Diffstat (limited to 'lib/setup/sqlite.php')
-rw-r--r-- | lib/setup/sqlite.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/setup/sqlite.php b/lib/setup/sqlite.php new file mode 100644 index 00000000000..b1785ce1b0b --- /dev/null +++ b/lib/setup/sqlite.php @@ -0,0 +1,20 @@ +<?php + +namespace OC\Setup; + +class Sqlite extends AbstractDatabase { + public function initialize($config) { + } + + public function setupDatabase($username) { + $datadir = \OC_Config::getValue('datadirectory'); + + //delete the old sqlite database first, might cause infinte loops otherwise + if(file_exists("$datadir/owncloud.db")) { + unlink("$datadir/owncloud.db"); + } + //in case of sqlite, we can always fill the database + error_log("creating sqlite db"); + \OC_DB::createDbFromStructure('db_structure.xml'); + } +} |