Merge pull request #2591 from BenLubar/benlubar-edit-history-public

add profile option for edit history visibility
This commit is contained in:
Sam
2014-07-30 14:09:10 +10:00
8 changed files with 30 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