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

Ajax

开发平台:

Others

  1. class LinkSidebarsToBlog < ActiveRecord::Migration
  2.   class Sidebar < ActiveRecord::Base
  3.     include BareMigration
  4.   end
  5.   def self.up
  6.     modify_tables_and_update(:add_column, Sidebar, :blog_id, :integer) do |sb|
  7.       next if $schema_generator
  8.       sb.blog_id = 1
  9.       sb.save!
  10.     end
  11.   end
  12.   def self.down
  13.     remove_column :sidebars, :blog_id
  14.   end
  15. end