mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
5 lines
125 B
Ruby
5 lines
125 B
Ruby
|
class AddTeamersCountToTeams < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :teams, :teamers_count, :integer
|
||
|
end
|
||
|
end
|