From 87fac9579a749e99f8ee8d2b8ea9972e3b32e86e Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Sat, 30 Dec 2023 10:37:35 +0100 Subject: change order of droping tables, constraints Signed-off-by: Benjamin Brahmer --- docs/install.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/install.md') diff --git a/docs/install.md b/docs/install.md index 50bd69ce0..6cfde70ca 100644 --- a/docs/install.md +++ b/docs/install.md @@ -123,9 +123,9 @@ Connect to your DB and execute the commands. Don't forget to switch to the right For example in mysql: `use nextcloud;` ```sql -DROP TABLE oc_news_folders; -DROP TABLE oc_news_feeds; DROP TABLE oc_news_items; +DROP TABLE oc_news_feeds; +DROP TABLE oc_news_folders; ``` Then we remove the traces in the migrations table. @@ -149,4 +149,4 @@ DELETE FROM oc_jobs WHERE class='OCA\\News\\Cron\\Updater'; DELETE FROM oc_jobs WHERE argument='["OCA\\\\News\\\\Cron\\\\Updater","run"]'; ``` -Now nothing is left from News in your nextcloud installation. +Now nothing is left from News in your Nextcloud installation. -- cgit v1.2.3