From e467b76b955fbe0aff500c83dd8545e715f855bd Mon Sep 17 00:00:00 2001 From: Simone Roberto Nunzi Date: Wed, 17 Aug 2022 21:39:05 +0200 Subject: [PATCH] Support for NextCloud 22+ Remove database.xml following docs and other apps examples: - https://docs.nextcloud.com/server/latest/developer_manual/basics/storage/migrations.html - https://github.com/SpicyWeb-de/nextcloud-user-ispconfig/pull/8 This will ensure migration will run correctly on extension activation, avoiding the error "The appinfo/database.xml file is not longer supported. Used in checksum_api" --- appinfo/database.xml | 50 -------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 appinfo/database.xml diff --git a/appinfo/database.xml b/appinfo/database.xml deleted file mode 100644 index 5c0942b..0000000 --- a/appinfo/database.xml +++ /dev/null @@ -1,50 +0,0 @@ - - *dbname* - true - false - utf8 - - *dbprefix*checksum_api - - - id - integer - true - true - true - true - 8 - - - fileid - integer - true - 0 - true - 8 - - - revision - integer - true - 0 - true - 8 - - - type - text - true - - 30 - - - hash - text - true - - 64 - - -
-