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

Ajax

开发平台:

Others

  1. module WP25
  2.   class Comment < ActiveRecord::Base
  3.     establish_connection configurations['wp25']
  4.     set_primary_key 'comment_ID'
  5.     set_table_name 'wp_comments'
  6.     belongs_to :post, :foreign_key => 'comment_parent', :class_name => 'WP25::Post'
  7.     belongs_to :user, :class_name => 'WP25::User'
  8.     def self.prefix=(prefix)
  9.       set_table_name "#{prefix}_comments"
  10.     end
  11.   end
  12. end