テーブルにこのようなカラムがありました。最後の行です。
create_table 'contacts', force: :cascade do |t|
t.string 'title'
t.text 'content'
t.bigint 'user_id'
t.datetime 'created_at', null: false
t.datetime 'updated_at', null: false
t.string 'name'
t.string 'email'
** t.index ['user_id'], name: 'index_contacts_on_user_id'**
end
t.index ['user_id'], name: 'index_contacts_on_user_id'
このカラムにはいったいどのような意味があるのでしょうか?
すでに4行目で t.bigint 'user_id'
user_idに関するカラムは作っています。
t.index ['user_id'], name: 'index_contacts_on_user_id'
これの意味を教えてください
このテーブルはお問い合わせのためのテーブルです。
回答2件
あなたの回答
tips
プレビュー