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

Ajax

开发平台:

Others

  1. class FixUserlessArticles < ActiveRecord::Migration
  2.   def self.up
  3.     unless $schema_generator
  4.       articles = Article.find(:all)
  5.       STDERR.puts "Fixing articles with empty user_id"
  6.       
  7.       articles.each do |article|
  8.         if article.user.nil?
  9.           STDERR.puts "Fixing article #{article.id} having empty user"
  10.           article.user_id = 1
  11.           article.save!
  12.         end
  13.       end
  14.     end
  15.   end
  16.   def self.down
  17.   end
  18. end