summaryrefslogtreecommitdiff
path: root/db/migrate/20140401215730_create_tournaments.rb
blob: 55f76a3e3d2d39633139ca4ad8f8aac6f554c3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateTournaments < ActiveRecord::Migration
  def change
    create_table :tournaments do |t|
      t.string :name
      t.references :game, index: true
      t.integer :status
      t.boolean :randomized_teams

      t.timestamps
    end
  end
end