ensl.org/db/migrate/20190917222520_add_teamers_count_to_teams.rb

5 lines
130 B
Ruby
Raw Normal View History

2020-03-22 17:46:17 +00:00
class AddTeamersCountToTeams < ActiveRecord::Migration[4.2]
def change
add_column :teams, :teamers_count, :integer
end
end