Skip to content

Instantly share code, notes, and snippets.

@mikebaldry
Created December 6, 2012 08:59
Show Gist options
  • Select an option

  • Save mikebaldry/4222999 to your computer and use it in GitHub Desktop.

Select an option

Save mikebaldry/4222999 to your computer and use it in GitHub Desktop.
class Campaign < ActiveRecord::Base
has_many :daily_data
attr_accessible :start_date
def last_day_of_consecutive_daily_data
# meh
end
end
class DailyData
belongs_to :campaign
attr_accessible :date
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment