Files
discourse/db/migrate/20140617053829_add_notification_id_to_user_badge.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
176 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddNotificationIdToUserBadge < ActiveRecord::Migration[4.2]
2014-06-17 11:29:28 +05:30
def change
add_column :user_badges, :notification_id, :integer
end
end