Add public interests validation and show interests on user profile

This commit is contained in:
taitus
2017-06-30 15:34:27 +02:00
committed by Senén Rodero Rodríguez
parent bce28afe36
commit 19820e4432
11 changed files with 142 additions and 2 deletions

View File

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