タイトル: Changing columns for table "~" requires Doctrine DBAL; install "doctrine/dbal"
| この記事の要点 |
|---|
|
エラー内容
| Changing columns for table "~" requires Doctrine DBAL; install "doctrine/dbal" |
発生条件/原因
カラムの定義変更時に発生する。(マイグレーション機能)
カラムの定義変更には”doctrine/dbal”をインストールする必要がある。
対処法
以下のコマンドをプロジェクトのルートディレクトリ上で実行して”doctrine/dbal”を導入する。
| composer require doctrine/dbal |