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

Ajax

开发平台:

Others

  1. class Bare27Content < ActiveRecord::Base
  2.   include BareMigration
  3.   # See #24 for a description of how we have to manually handle STI
  4. end
  5. class SetCommentPublishedFlag < ActiveRecord::Migration
  6.   def self.up
  7.     STDERR.puts "Setting published flag on each comment"
  8.     Bare27Content.transaction do
  9.       Bare27Content.find(:all, :conditions => "type = 'Comment'").each do |c|
  10.         c.published = true
  11.         c.save!
  12.       end
  13.     end
  14.   end
  15.   def self.down
  16.   end
  17. end