FEATURE: Add user preference for title counter mode (#7364)

This commit is contained in:
David Taylor
2019-04-12 09:02:18 +10:00
committed by Sam
parent c0c236f36e
commit dc703adad7
12 changed files with 67 additions and 9 deletions
@@ -0,0 +1,5 @@
class AddTitleCountModeToUserOptions < ActiveRecord::Migration[5.2]
def change
add_column :user_options, :title_count_mode_key, :integer, null: false, default: 0
end
end