Skip to content
Kenneth Lee edited this page Jul 3, 2015 · 39 revisions
class Ball < ActiveRecord::Base
  validates :name, presence: true
  belongs_to :player

  rails_admin do
    configure :player do
      label 'Owner of this ball: '
    end
  end
end
Clone this wiki locally