SQLStop stops the SQL database of the development environment.
()
| 98 | |
| 99 | // SQLStop stops the SQL database of the development environment. |
| 100 | func (Dev) SQLStop() error { |
| 101 | if mg.Verbose() { |
| 102 | fmt.Println("Stopping SQL database") |
| 103 | } |
| 104 | return execDockerCompose(append([]string{"stop"}, sqlDatabase)...) |
| 105 | } |
| 106 | |
| 107 | // SQLDump performs an SQL database dump of the dev database to the .cache folder. |
| 108 | func (Dev) SQLDump() error { |
nothing calls this directly
no test coverage detected