前提・実現したいこと
moviesテーブルとschedulesテーブル、reservationテーブルを結合したい。
テーブル結合はreservationsテーブルを起点として行いたい。
発生している問題・エラーメッセージ
Can't join 'Reservation' to association named 'schedules'; perhaps you misspelled it?
該当のソースコード
モデル
reservation.rb
ruby
1class Reservation < ApplicationRecord 2 belongs_to :sheet 3 belongs_to :schedule 4end
schedule.rb
ruby
1class Schedule < ApplicationRecord 2 belongs_to :movie 3 has_many :reservations 4end
movie.rb
ruby
1 2class Movie < ApplicationRecord 3 has_many :schedules, dependent: :destroy 4end
schema
create_table "reservations", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t| t.bigint "schedule_id" t.bigint "sheet_id" t.date "date", null: false t.string "email", null: false t.string "name", limit: 50 t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.index ["schedule_id"], name: "index_reservations_on_schedule_id" t.index ["sheet_id"], name: "index_reservations_on_sheet_id" end create_table "movies", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t| t.string "name" t.integer "year" t.string "description" t.string "image_url" t.integer "is_showing" t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false end create_table "schedules", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t| t.bigint "movie_id", null: false t.date "start_time", null: false, comment: "上映開始時刻" t.date "end_time", null: false, comment: "上映終了時刻" t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.index ["movie_id"], name: "index_schedules_on_movie_id" end
試したこと
moviesが親になるので、孫に当たるresrevationsから値を取得しようとしましたが、上記のエラーが出てしまいました。
reservations → schedules → movies
ruby
1 def index 2 @reservations = Reservation.joins(schedules: :movies).select("schedules.*, reservations.*, reservations.id AS reservations_id, movies.*") 3 end 4
schedulesとreservationsの関連づけができていないと思い以下を実行しましたが、問題なく値は取得できました。
@reservation = Reservation.find(1) @reservation.schedule
補足情報(FW/ツールのバージョンなど)
Rails6.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/25 11:25