13 lines
242 B
Markdown
13 lines
242 B
Markdown
## Database
|
|
|
|
### postgres
|
|
|
|
```bash
|
|
$ create-postgres-user-and-database foo bar # create user `foo` and give him access to database `bar`
|
|
```
|
|
|
|
### mysql
|
|
|
|
```bash
|
|
$ create-mysql-user-and-database foo # create database and user `foo`
|
|
``` |