mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
Updated Windows (markdown)
parent
f298f3ffa2
commit
fed4567475
1 changed files with 17 additions and 1 deletions
18
Windows.md
18
Windows.md
|
@ -55,10 +55,26 @@ use wekan
|
||||||
```
|
```
|
||||||
List wekan database collections/tables:
|
List wekan database collections/tables:
|
||||||
```
|
```
|
||||||
|
show collections
|
||||||
|
```
|
||||||
Show content of users collection/table:
|
Show content of users collection/table:
|
||||||
```
|
```
|
||||||
db.users.find();
|
db.users.find()
|
||||||
```
|
```
|
||||||
|
Create new database:
|
||||||
|
```
|
||||||
|
use testing
|
||||||
|
```
|
||||||
|
Delete current database:
|
||||||
|
```
|
||||||
|
db.dropDatabase()
|
||||||
|
```
|
||||||
|
List databases again to show that database testing is not there anymore:
|
||||||
|
```
|
||||||
|
show dbs
|
||||||
|
```
|
||||||
|
Also see [Forgot Password](https://github.com/wekan/wekan/wiki/Forgot-Password)
|
||||||
|
|
||||||
Exit MongoDB CLI:
|
Exit MongoDB CLI:
|
||||||
```
|
```
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue