discourse/db/migrate/20130508040235_add_user_cou...

6 lines
152 B
Ruby
Raw Normal View History

class AddUserCountToGroups < ActiveRecord::Migration[4.2]
2013-05-08 01:20:38 -04:00
def change
add_column :groups, :user_count, :integer, null: false, default: 0
end
end