Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions v2.5.x/site/en/userGuide/manage_databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ You can alter the properties of an existing database as follows. The following e

```python
client.alter_database_properties(
db_name: "my_database_1",
properties: {
db_name="my_database_1",
properties={
"database.max.collections": 10
}
)
Expand Down Expand Up @@ -345,8 +345,8 @@ You can also reset a database property by dropping it as follows. The following

```python
client.drop_database_properties(
db_name: "my_database_1",
property_keys: [
db_name="my_database_1",
property_keys=[
"database.max.collections"
]
)
Expand Down