mfg
This commit is contained in:
11
.ddev/.global_commands/db/mysql
Executable file
11
.ddev/.global_commands/db/mysql
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
## #ddev-generated
|
||||
## Description: run mysql client in db container
|
||||
## Usage: mysql [flags] [args]
|
||||
## Example: "ddev mysql" or "ddev mysql -uroot -proot" or "echo 'SHOW TABLES;' | ddev mysql"
|
||||
## `ddev mysql --database=mysql -uroot -proot` gets you to the 'mysql' database with root privileges
|
||||
## DBTypes: mysql,mariadb
|
||||
## ExecRaw: true
|
||||
|
||||
mysql -udb -pdb "$@"
|
||||
10
.ddev/.global_commands/db/psql
Executable file
10
.ddev/.global_commands/db/psql
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
#ddev-generated
|
||||
## Description: run pgsql client in db container
|
||||
## Usage: psql [flags] [args]
|
||||
## Example: "ddev psql" or "ddev psql -U db somedb" or "echo 'SELECT current_database();' | ddev psql"
|
||||
## DBTypes: postgres
|
||||
## ExecRaw: true
|
||||
|
||||
psql "$@"
|
||||
Reference in New Issue
Block a user