1
0
Fork 0
forked from gitea/nas

Add custom_emoji isSensitive support

This commit is contained in:
KMY 2023-05-22 17:44:47 +09:00
parent 156f3a7c99
commit ff2bcf7595
8 changed files with 23 additions and 4 deletions

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddIsSensitiveToCustomEmojis < ActiveRecord::Migration[6.1]
def change
add_column :custom_emojis, :is_sensitive, :boolean, null: false, default: false
end
end