2011-05-07 20:50:39 +02:00
|
|
|
class SharedSupplier < ActiveRecord::Base
|
|
|
|
|
|
|
|
# connect to database from sharedLists-Application
|
2012-08-24 19:52:38 +02:00
|
|
|
SharedSupplier.establish_connection(FoodsoftConfig[:shared_lists])
|
2011-05-07 20:50:39 +02:00
|
|
|
# set correct table_name in external DB
|
2012-10-19 01:12:47 +02:00
|
|
|
self.table_name = 'suppliers'
|
|
|
|
|
2011-05-07 20:50:39 +02:00
|
|
|
has_one :supplier
|
|
|
|
has_many :shared_articles, :foreign_key => :supplier_id
|
|
|
|
|
|
|
|
end
|
|
|
|
|