エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Laravel artisan で指定したテーブルのMermaid ER図を出力する(MySQL)
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Laravel artisan で指定したテーブルのMermaid ER図を出力する(MySQL)
<?php namespace App\Console\Commands; use DB; use Illuminate\Console\Command; use stdClass; class... <?php namespace App\Console\Commands; use DB; use Illuminate\Console\Command; use stdClass; class CreateDatabaseMermaid extends Command { protected $signature = 'command:create-database-mermaid { tables : 対象テーブル名をカンマ区切りで } '; protected $description = '指定されたテーブルのER図をMermaid形式で出力する'; public function handle(): int { echo 'erDiagram' . "\n\n"; $tables = collect(explode(',', $this->argument('tables')))