Add post_id to user_badges table.

This commit is contained in:
Vikhyat Korrapati 2014-06-10 06:54:54 +05:30
parent 67a2b2598d
commit 7fa972676a

View File

@ -0,0 +1,5 @@
class AddPostIdToUserBadges < ActiveRecord::Migration
def change
add_column :user_badges, :post_id, :integer
end
end