~cytrogen/masto-fe

ref: 9b2bc3d1de301c686208b43a8efef5bc808f8e4e masto-fe/db/migrate/20200917192924_add_notify_to_follows.rb -rw-r--r-- 559 bytes
9b2bc3d1 — Eugen Rochko Add recent searches in web UI (#26834) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require Rails.root.join('lib', 'mastodon', 'migration_helpers')

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

  disable_ddl_transaction!

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

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