Gab-Social/db/migrate/20200510034822_remove_unread_count_from_group_accounts.rb

6 lines
173 B
Ruby
Raw Normal View History

2020-05-10 03:57:38 +00:00
class RemoveUnreadCountFromGroupAccounts < ActiveRecord::Migration[5.2]
def change
safety_assured { remove_column :group_accounts, :unread_count, :integer }
end
end