1 2 3 4 5 6 7 8 9
class AddChangesRevision < ActiveRecord::Migration def self.up add_column :changes, :revision, :string end def self.down remove_column :changes, :revision end end