feat: Adds the ability to set an emoji for help center category (#8111)

This commit is contained in:
Sivin Varghese
2023-10-20 13:52:30 +05:30
committed by GitHub
parent b9694a0818
commit 35a9acf099
14 changed files with 197 additions and 42 deletions

View File

@@ -0,0 +1,5 @@
class AddIconToCategories < ActiveRecord::Migration[7.0]
def change
add_column :categories, :icon, :string, default: ''
end
end