summaryrefslogtreecommitdiff
path: root/docs/configuration/howto_database_config.md
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-07-12 10:43:24 -0500
committerMark Felder <feld@FreeBSD.org>2020-07-12 10:43:24 -0500
commit0871e8b8feb9f88a67ce12f8780691f41dae79a2 (patch)
tree993d41a4bac4b9d003cf3819bed03397ed40a86f /docs/configuration/howto_database_config.md
parent133004e22d74e7cdfd13a69f88b509b395985a5d (diff)
downloadpleroma-0871e8b8feb9f88a67ce12f8780691f41dae79a2.tar.gz
pleroma-0871e8b8feb9f88a67ce12f8780691f41dae79a2.zip
Make the query more precise
Diffstat (limited to 'docs/configuration/howto_database_config.md')
-rw-r--r--docs/configuration/howto_database_config.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration/howto_database_config.md b/docs/configuration/howto_database_config.md
index b39b75bd4..e4ddc190c 100644
--- a/docs/configuration/howto_database_config.md
+++ b/docs/configuration/howto_database_config.md
@@ -120,8 +120,8 @@ pleroma_dev=# select * from config;
----+-----------+------------------------------------------------------------+---------------------+---------------------+----------
1 | :instance | \x836c0000000168026400046e616d656d00000007426c65726f6d616a | 2020-07-12 15:33:29 | 2020-07-12 15:33:29 | :pleroma
(1 row)
-pleroma_dev=# delete from config where key = ':instance';
+pleroma_dev=# delete from config where key = ':instance' and group = ':pleroma';
DELETE 1
```
-Now the `config :pleroma, :instance` settings have been removed from the database. \ No newline at end of file
+Now the `config :pleroma, :instance` settings have been removed from the database.