summaryrefslogtreecommitdiffstats
path: root/docs/install.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/install.md')
-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.