Gab-Social/db/migrate/20200510034822_remove_unread_count_from_group_accounts.rb
2020-05-11 23:34:18 -04:00

6 lines
173 B
Ruby

class RemoveUnreadCountFromGroupAccounts < ActiveRecord::Migration[5.2]
def change
safety_assured { remove_column :group_accounts, :unread_count, :integer }
end
end