railsを学習しており、Qiita記事を参考にいいね機能を実装しようとしていたところ、
unknown attribute 'micropost_id' for Like.
というエラーメッセージが表示されてしまいます。
micropost_idというカラムはどのテーブルにも存在していませんし、
同名の値をどこかで渡しているわけでもありません。
調べてみたところ、shemaとmysql自体のの齟齬に関する記事がいくつか出てきたので、
mysqlからlikesテーブルのカラムを確認したところshemaと一致。
そのほか、
rails db:reset
rails db:migrate:reset
を実行しましたが変わらずエラーになります。
お手上げ状態で、どなたかアドバイスお願いいたします。
###スキーマ(likeテーブル)
create_table "likes", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci", force: :cascade do |t| t.integer "user_id" t.integer "like_id" t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.index ["like_id"], name: "index_likes_on_like_id" t.index ["user_id", "like_id"], name: "index_likes_on_user_id_and_like_id", unique: true t.index ["user_id"], name: "index_likes_on_user_id" end
いいねボタンのパーシャル
<% if current_user!=post.user %> <span class="like"> <% if post.like?(current_user) %> <%= form_for(post.likes.find_by(user_id: current_user.id), method: :delete, remote: true) do |f| %> <%= button_tag(class: "btn btn-default btn-xs") do %> <%= content_tag :span, "#", class: "glyphicon glyphicon-heart" %> <% end %> <% end %> <% else %> <%= form_for(post.likes.build, remote: true) do |f| %> <div><%= hidden_field_tag :like_id, post.id %></div> <%= button_tag(class: "btn btn-default btn-xs") do %> <%= content_tag :span, "#", class: "glyphicon glyphicon-heart-empty" %> <% end %> <% end %> <% end %> </span> <% end %>
###like.rb
class Like < ApplicationRecord belongs_to :user belongs_to :micropost validates :user_id, presence: true validates :like_id, presence: true end
###user.rb
class User < ApplicationRecord has_many :microposts,dependent: :destroy has_many :active_relationships, class_name: "Relationship", foreign_key: "follower_id", dependent: :destroy has_many :passive_relationships, class_name: "Relationship", foreign_key: "followed_id", dependent: :destroy has_many :following, through: :active_relationships, source: :followed has_many :followers, through: :passive_relationships has_many :likes, dependent: :destroy validates :name,presence: :true, length:{ maximum: 15 } validates :email,presence: :true validates :password, presence:true,length:{ minimum: 6 } validates :password_confirmation,presence: :true devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable mount_uploader :avatar, AvatarUploader
###micropost.rb
belongs_to :user has_many :likes, dependent: :destroy has_many :like_users, through: :likes, source: :user default_scope -> { order(created_at: :desc) } mount_uploader :picture, PictureUploader validates :user_id,presence: true validates :title, presence: true validates :content,length: { maximum: 140 } validates :picture, presence: true
###relationship.rb
class Relationship < ApplicationRecord belongs_to :follower, class_name: "User" belongs_to :followed, class_name: "User" validates :follower_id,presence: true validates :followed_id,presence: true end
回答1件
あなたの回答
tips
プレビュー