feat: Add emoji & icon picker for Help Center categories (#14702)

This commit is contained in:
Sivin Varghese
2026-06-16 02:10:05 +05:30
committed by GitHub
parent d8a16278b9
commit 1713cabdf2
41 changed files with 3015 additions and 6699 deletions

View File

@@ -0,0 +1,5 @@
class AddIconColorToCategories < ActiveRecord::Migration[7.1]
def change
add_column :categories, :icon_color, :string, default: ''
end
end

View File

@@ -428,6 +428,7 @@ ActiveRecord::Schema[7.1].define(version: 2026_06_11_184600) do
t.bigint "parent_category_id"
t.bigint "associated_category_id"
t.string "icon", default: ""
t.string "icon_color", default: ""
t.index ["associated_category_id"], name: "index_categories_on_associated_category_id"
t.index ["locale", "account_id"], name: "index_categories_on_locale_and_account_id"
t.index ["locale"], name: "index_categories_on_locale"