Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # app/models/infrastructure/radio.rb
  2.  
  3. module Infrastructure
  4.   class Radio < ActiveRecord::Base
  5.     set_table_name 'radio_channels'
  6.  
  7.     has_many :foo, primary_key: :ut_id_name, foreign_key: :key, class_name: "UserTranslation"
  8.   end
  9. end