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

Ajax

开发平台:

Others

  1. module Dotclear
  2.   class Comment < ActiveRecord::Base
  3.     establish_connection configurations['dc']
  4.     set_primary_key 'comment_id'
  5.     set_table_name 'dc_comment'
  6.     belongs_to :post, :foreign_key => 'post_id', :class_name => 'Dotclear::Post'
  7.   end
  8. end