055_link_sidebars_to_blog.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:
Ajax
开发平台:
Others
- class LinkSidebarsToBlog < ActiveRecord::Migration
- class Sidebar < ActiveRecord::Base
- include BareMigration
- end
- def self.up
- modify_tables_and_update(:add_column, Sidebar, :blog_id, :integer) do |sb|
- next if $schema_generator
- sb.blog_id = 1
- sb.save!
- end
- end
- def self.down
- remove_column :sidebars, :blog_id
- end
- end