FEATURE: ability to add description to tags (#15125)

Ability to add description to tags, which will be displayed on hover.
This commit is contained in:
Krzysztof Kotlarek
2021-12-01 09:18:56 +11:00
committed by GitHub
parent 78723345c0
commit 9cabd3721b
23 changed files with 190 additions and 85 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddDescriptionToTags < ActiveRecord::Migration[6.1]
def change
add_column :tags, :description, :string
end
end