~cytrogen/masto-fe

ref: 4ea24537cf9c1fafd0edf79acd8cf666be662fbe masto-fe/db/migrate/20171028221157_add_reblogs_to_follows.rb -rw-r--r-- 551 bytes
4ea24537 — dependabot[bot] Bump rubocop-performance from 1.17.1 to 1.18.0 (#25089) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require Rails.root.join('lib', 'mastodon', 'migration_helpers')

class AddReblogsToFollows < ActiveRecord::Migration[5.2]
  include Mastodon::MigrationHelpers

  disable_ddl_transaction!

  def up
    safety_assured do
      add_column_with_default :follows, :show_reblogs, :boolean, default: true, allow_null: false
      add_column_with_default :follow_requests, :show_reblogs, :boolean, default: true, allow_null: false
    end
  end

  def down
    remove_column :follows, :show_reblogs
    remove_column :follow_requests, :show_reblogs
  end
end