master
1class AddPhotosCountToUsers < ActiveRecord::Migration[5.0]
2  def change
3    add_column :users, :photos_count, :integer, default: 0
4  end
5end