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

5 lines
125 B
Ruby
Raw Normal View History

class AddTeamersCountToTeams < ActiveRecord::Migration
def change
add_column :teams, :teamers_count, :integer
end
end