FEATURE: lets users favorite 2 badges to show on user-card (#13151)

This commit is contained in:
Joffrey JAFFEUX
2021-06-01 10:33:40 +02:00
committed by GitHub
parent c5174e6982
commit 1cd0424ccd
17 changed files with 187 additions and 11 deletions
@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddIsFavoriteToUserBadge < ActiveRecord::Migration[6.0]
def change
add_column :user_badges, :is_favorite, :boolean
end
end