2022-11-15 12:41:05 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-11-15 12:34:03 -08:00
|
|
|
class AddPrivacyHideSocialGraph < ActiveRecord::Migration[6.1]
|
|
|
|
def up
|
|
|
|
add_column :users, :privacy_hide_social_graph, :boolean, default: false
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :users, :privacy_hide_social_graph
|
|
|
|
end
|
|
|
|
end
|