7b28218f96
This commit allows user to show one of their emails in profile page, or don't show email in this page.
5 lines
149 B
Ruby
5 lines
149 B
Ruby
class AddPublicEmailToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :public_email, :string, default: "", null: false
|
|
end
|
|
end
|