summaryrefslogtreecommitdiff
path: root/db/migrate/20140406235940_create_matches.rb
blob: 31eea1216a9a86b2c972b189fad654af868bde2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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.string :remote_id

      t.timestamps
    end
  end
end