20110928140106_add_project_id_for_note.rb 182 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddProjectIdForNote < ActiveRecord::Migration def up add_column :notes, :project_id, :integer end def down remove_column :notes, :project_id, :integer end end