Retrospring/db/migrate/20221115194933_add_privacy_...

12 lines
260 B
Ruby
Raw Normal View History

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