Skip to content

Instantly share code, notes, and snippets.

@c3mediagroup
Created June 6, 2009 08:06
Show Gist options
  • Save c3mediagroup/124771 to your computer and use it in GitHub Desktop.
Save c3mediagroup/124771 to your computer and use it in GitHub Desktop.
class AddStaffToNotes < ActiveRecord::Migration
def self.up
add_column :notes, :staff, :boolean
add_index :notes, :staff
end
def self.down
remove_column :notes, :staff
remove_index :notes, :staff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment