-1
有以下型號:軌道4遷移和範圍
class BeautySalonService < ActiveRecord::Base
validates :name, :cost, :beauty_salon_category, presence: true
belongs_to :beauty_salon_category
has_many :beauty_salon_employee_services, dependent: :destroy
has_many :beauty_salon_employees, through: :beauty_salon_employee_services
scope :with_employees, select { |bss| bss.beauty_salon_employees.size > 0 }
end
當我嘗試使用Capistrano的我碰到下面的錯誤我的代碼部署到生產服務器:
PG::UndefinedTable: ERROR: relation "beauty_salon_services" does not exist
LINE 1: SELECT "beauty_salon_services".* FROM "beauty_salon_services...
而這個錯誤鏈接到'scope:with_employees'這一行。如果我評論這一行,我的代碼運行良好。有什麼麻煩可能是?提前致謝。
你真的有'在你的數據庫表beauty_salon_services'? – Pavan
你在哪裏定義了beauty_salon_services關係? –
看模型,其中的全部信息 – malcoauri