summaryrefslogtreecommitdiff
path: root/db/migrate/20140304020848_create_tournaments.rb
blob: 36fcf7ef1e1c1c6a453677b89175fc96d5e3f4b6 (plain)
1
2
3
4
5
6
7
8
9
class CreateTournaments < ActiveRecord::Migration
  def change
    create_table :tournaments do |t|
      t.references :game, index: true

      t.timestamps
    end
  end
end