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

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2023_10_11_041615) do
ActiveRecord::Schema[7.0].define(version: 2023_10_13_072802) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_stat_statements"
enable_extension "pg_trgm"
@@ -231,6 +231,7 @@ ActiveRecord::Schema[7.0].define(version: 2023_10_11_041615) do
t.string "slug", null: false
t.bigint "parent_category_id"
t.bigint "associated_category_id"
t.string "icon", 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"