2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-18 23:47:29 +00:00
|
|
|
class AddUnreadToAccountConversations < ActiveRecord::Migration[5.2]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
safety_assured do
|
2024-01-10 10:35:06 +00:00
|
|
|
add_column(
|
2018-10-18 23:47:29 +00:00
|
|
|
:account_conversations,
|
|
|
|
:unread,
|
|
|
|
:boolean,
|
2024-01-10 10:35:06 +00:00
|
|
|
null: false,
|
2018-10-18 23:47:29 +00:00
|
|
|
default: false
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :account_conversations, :unread, :boolean
|
|
|
|
end
|
|
|
|
end
|