mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
469 B
17 lines
469 B
class CreateTeams < ActiveRecord::Migration
|
|
def up
|
|
create_table :teams do |t|
|
|
t.string :name, :null => false, :default => ''
|
|
t.integer :max_members, :null => false, :default => 16
|
|
t.integer :captain_id, :null => false
|
|
end
|
|
add_index :teams, :name, :unique => true
|
|
add_index :teams, :captain_id
|
|
end
|
|
|
|
def down
|
|
remove_index :teams, :column => :captain_id
|
|
remove_index :teams, :column => :name
|
|
drop_table :teams
|
|
end
|
|
end
|
|
|