Sha256: 4acbcd7afc19043fe074f515fcad761fe29d441c2ced077c0b145a05bc262cf4
Contents?: true
Size: 269 Bytes
Versions: 26
Compression:
Stored size: 269 Bytes
Contents
class NoCommentForum < ActiveRecord::Migration def self.up Forum.find(:all, :conditions => "for_comments = 1").each {|forum| forum.destroy } remove_column :forums, :for_comments end def self.down add_column :forums, :for_comments, :boolean end end
Version data entries
26 entries across 26 versions & 1 rubygems