summaryrefslogtreecommitdiff
path: root/db/migrate/20140325214516_create_matches.rb
blob: 30949a87accf77c3ea17e7fb5fc2c141bbaa94f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateMatches < ActiveRecord::Migration
  def change
    create_table :matches do |t|
      t.integer :status
      t.references :tournament, index: true
      t.string :name
      t.references :winner, index: true

      t.timestamps
    end
  end
end