mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:39:52 +01:00
11 lines
238 B
Ruby
11 lines
238 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddPrivacyNoindexToUser < ActiveRecord::Migration[6.1]
|
|
def up
|
|
add_column :users, :privacy_noindex, :boolean, default: false
|
|
end
|
|
|
|
def down
|
|
remove_column :users, :privacy_noindex
|
|
end
|
|
end
|