summaryrefslogtreecommitdiff
path: root/db/migrate/20140422212648_create_tournament_stages.rb
blob: e3668cbbfeded8f6b642808e48d844b7500a08cc (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateTournamentStages < ActiveRecord::Migration
  def change
    create_table :tournament_stages do |t|
      t.references :tournament, index: true
      t.string :scheduling
      t.text :structure

      t.timestamps
    end
  end
end