add profile option for edit history, visible only when edit history is disabled globally.

This commit is contained in:
Ben Lubar
2014-07-26 23:04:46 -05:00
parent 782773f774
commit 44dc4b4a17
7 changed files with 15 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddEditHistoryPublicToUsers < ActiveRecord::Migration
def change
add_column :users, :edit_history_public, :boolean, default: false, null: false
end
end