8 lines
187 B
Ruby
8 lines
187 B
Ruby
class BookDataLink < ActiveRecord::Base
|
|
establish_connection Rails.configuration.database_configuration["calibre"]
|
|
|
|
self.table_name = "data"
|
|
|
|
belongs_to :book, foreign_key: "book"
|
|
end
|