Created
September 15, 2015 13:34
-
-
Save nomasprime/9f87c01fc72fc2b9d185 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Survey < ActiveRecord::Base | |
acts_as_paranoid | |
include Importable | |
###### Associations ######## | |
belongs_to :project | |
belongs_to :publication, counter_cache: true | |
belongs_to :site | |
belongs_to :location_type, :class_name => ListItem, :foreign_key => "location_type_id" | |
belongs_to :study_design, :class_name => ListItem, :foreign_key => "study_design_id" | |
belongs_to :intervention_status, :class_name => ListItem, :foreign_key => "intervention_status_id" | |
belongs_to :gender, :class_name => ListItem, :foreign_key => "gender_id" | |
belongs_to :time_of_day, :class_name => ListItem, :foreign_key => "time_of_day_id" | |
has_many :outcomes, dependent: :destroy | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment