post.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. module Dotclear
  2.   class Post < ActiveRecord::Base
  3.     set_table_name 'dc_post'
  4.     set_primary_key 'post_id'
  5.     establish_connection configurations['dc']
  6.     has_many :comments, :foreign_key => 'post_id', :class_name => 'Dotclear::Comment'
  7.     belongs_to :categorie, :foreign_key => 'cat_id', :class_name => 'Dotclear::Category'
  8.   end
  9. end