Gab-Social/db/migrate/20201203211419_remove_is_unread_from_chat_conversation_accounts.rb
mgabdev 137a36b810 Progress with DMs
Progress with DMs
2020-12-03 17:13:11 -05:00

6 lines
180 B
Ruby

class RemoveIsUnreadFromChatConversationAccounts < ActiveRecord::Migration[5.2]
def change
safety_assured { remove_column :chat_conversation_accounts, :is_unread }
end
end