Laravel 10.x以降のartisanの「db」コマンドを解説します。
Description
新規データベースCLIセッションを開始します。
Usage
php artisan db [--read] [--write] [--] [<connection>]
Arguments
引数 | 必須 | 説明 |
---|---|---|
connection | - | 使用するデータベース接続 |
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
read | - | - | 読み込み用の接続 |
write | - | - | 書き込み用の接続 |
Example
no options
php artisan db
:
中略
:
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
Source
10.x
framework/src/Illuminate/Database/Console/DbCommand.php at 10.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
11.x
framework/src/Illuminate/Database/Console/DbCommand.php at 10.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
コメント