看起来新的Rails版本相对于self.up和self.down方法具有“更改”功能。
因此,当必须回滚迁移时会发生什么情况,它如何知道要执行的操作。我需要基于在线教程实现以下方法:
class AddImageToUsers < ActiveRecord::Migration
def self.up
add_column :users, :image_file_name, :string
add_column :users, :image_content_type, :string
add_column :users, :image_file_size, :integer
add_column :users, :image_updated_at, :datetime
end
def self.down
remove_column :users, :image_file_name, :string
remove_column :users, :image_content_type, :string
remove_column :users, :image_file_size, :integer
remove_column :users, :image_updated_at, :datetime
end
end
如何使用新的更改方法执行相同操作?