hensei-api/app/models/party.rb
2020-09-16 23:48:10 -07:00

5 lines
No EOL
177 B
Ruby

class Party < ApplicationRecord
##### ActiveRecord Associations
belongs_to :user, optional: true
has_many :weapons, foreign_key: "party_id", class_name: "GridWeapon"
end