FEATURE: allows multiple custom emoji groups (#9308)

Note: DBHelper would fail with a sql syntax error on columns like "group".

Co-authored-by: Jarek Radosz <jradosz@gmail.com>
This commit is contained in:
Joffrey JAFFEUX
2020-03-30 20:16:10 +02:00
committed by GitHub
parent fa5ba6beb8
commit 0996c3b7b3
24 changed files with 428 additions and 138 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddGroupToCustomEmojis < ActiveRecord::Migration[6.0]
def change
add_column :custom_emojis, :group, :string, null: true, limit: 20
end
end