Add emoji alias-names support

This commit is contained in:
KMY 2023-05-22 10:44:32 +09:00
parent dd05f2b58c
commit 8638e715cb
9 changed files with 42 additions and 6 deletions

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddAliasesToCustomEmoji < ActiveRecord::Migration[6.1]
def change
add_column :custom_emojis, :aliases, :jsonb
end
end