Sha256: 3931498fcc94959e648591a68e7a832155fa87bcb38e29283dc6fce893748eac
Contents?: true
Size: 340 Bytes
Versions: 16
Compression:
Stored size: 340 Bytes
Contents
module Dotclear class Post < ActiveRecord::Base set_table_name 'dc_post' set_primary_key 'post_id' establish_connection configurations['dc'] has_many :comments, :foreign_key => 'post_id', :class_name => 'Dotclear::Comment' belongs_to :categorie, :foreign_key => 'cat_id', :class_name => 'Dotclear::Category' end end
Version data entries
16 entries across 16 versions & 1 rubygems