041_fixup_default_sidebars.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:
Ajax
开发平台:
Others
- class FixupDefaultSidebars < ActiveRecord::Migration
- class BareSidebar < ActiveRecord::Base
- include BareMigration
- end
- def self.up
- BareSidebar.transaction do
- BareSidebar.find(:all, :conditions => "staged_position IS NULL").each do |sb|
- sb.staged_position = sb.active_position;
- sb.save!
- end
- end
- end
- def self.down
- # There's nothing to do in the down step.
- end
- end