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

Ajax

开发平台:

Others

  1. class AddTextfilterToUsers < ActiveRecord::Migration
  2.   def self.up
  3.     f = TextFilter.find(:first, :conditions => ["name = ?", "none"])
  4.     add_column :users, :text_filter_id, :string, :default => f.id
  5.     unless Blog.default.nil?
  6.       t = TextFilter.find(:first, :conditions => "name= '#{Blog.default.text_filter}'")
  7.       User.update_all("text_filter_id = #{t.id}")
  8.     end    
  9.   end
  10.   def self.down
  11.     remove_column :text_filter_id, :integer
  12.   end
  13. end