class AddExcludeFromAutoupdateToReleases < ActiveRecord::Migration def self.up add_column :releases, :exclude_from_autoupdate, :boolean, :default => false end def self.down remove_column :releases, :exclude_from_autoupdate end end