###前提・実現したいこと
Laravel 5.5 (PHP 7.1) + PostgreSQL 9.5 を使用。
マイグレーションでテーブルカラムにコメントを設定したい。
###発生している問題・エラーメッセージ
ドキュメントに書かれている通りにしても、テーブルカラムにコメントが設定されません。
もしかして、MySQL 以外は対応していないのでしょうか???
###該当のソースコード
Schema::create('users', function (Blueprint $table) { $table->increments('id'); $table->string('email')->comment('メールアドレス'); });
psql 実行結果:
bash
1=> \d+ users 2 Table "public.users" 3 Column | Type | Modifiers | Storage | Stats target | Description 4--------+------------------------+----------------------------------------------------+----------+--------------+------------- 5 id | integer | not null default nextval('users_id_seq'::regclass) | plain | | 6 email | character varying(255) | not null | extended | |
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。