summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2023-12-30 10:37:35 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2023-12-30 15:25:56 +0100
commit87fac9579a749e99f8ee8d2b8ea9972e3b32e86e (patch)
tree7ef361ee2b82265965c398df7f53e9309e33b81d
parent324fee81614c7e32ea58c748c9504f91432bffbf (diff)
change order of droping tables, constraints
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
-rw-r--r--docs/install.md6
1 files changed, 3 insertions, 3 deletions
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.