gab-social/db/migrate/20190721214831_add_unread_c...

6 lines
158 B
Ruby
Raw Normal View History

2019-07-19 23:06:32 +01:00
class AddUnreadCountToGroupAccounts < ActiveRecord::Migration[5.2]
def change
add_column :group_accounts, :unread_count, :integer, default: 0
end
end