1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# == Schema Information # Schema version: 20131024114346 # # Table name: info_request_batches # # id :integer not null, primary key # title :text not null # user_id :integer not null # created_at :datetime # updated_at :datetime # class InfoRequestBatch < ActiveRecord::Base has_many :info_requests belongs_to :user validates_presence_of :user validates_presence_of :title end