Skip to content

Instantly share code, notes, and snippets.

@orta
Created May 9, 2011 13:37
Show Gist options
  • Save orta/962527 to your computer and use it in GitHub Desktop.
Save orta/962527 to your computer and use it in GitHub Desktop.
class AddAuthorToWoofs < ActiveRecord::Migration
def self.up
add_column :woofs, :author_id, :integer
end
def self.down
remove_column :woofs, :author_id, :integer
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment