mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-10 21:23:23 -04:00
6 lines
158 B
Plaintext
6 lines
158 B
Plaintext
|
class AddPrivateTeamToTeam < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :teams, :private_team, :boolean, :default => false, :null => false
|
||
|
end
|
||
|
end
|