Add notification_id column to user_badges.

This commit is contained in:
Vikhyat Korrapati
2014-06-17 11:29:28 +05:30
parent 7daf584251
commit a68b47cb9f
4 changed files with 16 additions and 16 deletions

View File

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