summaryrefslogtreecommitdiff
path: root/db/migrate/20140304014742_create_matches.rb
blob: 288ce6a0b38e334988d26c316fc5269dcd819b34 (plain)
1
2
3
4
5
6
7
8
9
class CreateMatches < ActiveRecord::Migration
  def change
    create_table :matches do |t|
      t.reference :tournament

      t.timestamps
    end
  end
end