ユーザーフォロー機能を追加したいので、rerationshipテーブルに
user_idカラムとfollow_idカラムを追加しようとしたのですが、うまく生成されません。
どなたか解決方法が分かる方はいらっしゃいませんか。
ミグレーションファイル class CreateRelationships < ActiveRecord::Migration[6.0] def change create_table :relationships do |t| t.references :user, foreign_key: true t.references :follow, foreign_key: { to_table: :users } t.timestamps t.index [:user_id, :follow_id], unique: true end end end
rails db:migrate
エラーコード SQLite3::SQLException: no such column: relationships.user_id
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/23 08:32