Add custom-emoji license support

This commit is contained in:
KMY 2023-05-22 18:40:06 +09:00
parent ff2bcf7595
commit 34f0ad7ad5
5 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddLicenseToCustomEmojis < ActiveRecord::Migration[6.1]
def change
add_column :custom_emojis, :license, :string, null: true
end
end