~cytrogen/masto-fe

ref: 4ea24537cf9c1fafd0edf79acd8cf666be662fbe masto-fe/db/migrate/20181018205649_add_unread_to_account_conversations.rb -rw-r--r-- 483 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
20
21
22
23
require Rails.root.join('lib', 'mastodon', 'migration_helpers')

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

  disable_ddl_transaction!

  def up
    safety_assured do
      add_column_with_default(
        :account_conversations,
        :unread,
        :boolean,
        allow_null: false,
        default: false
      )
    end
  end

  def down
    remove_column :account_conversations, :unread, :boolean
  end
end