rosa-build/db/migrate/20130326165628_add_add_info...

9 lines
277 B
Ruby
Raw Normal View History

2013-03-26 17:51:32 +00:00
class AddAddInfoToComments < ActiveRecord::Migration
def change
add_column :comments, :created_from_commit_hash, :decimal, :precision => 50, :scale => 0
add_column :comments, :created_from_issue_id, :integer
add_index :comments, :created_from_issue_id
end
end