From fff1ca96f63833d7d08ca3f95fb13284e517b69d Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 7 Mar 2014 00:03:52 -0500 Subject: fix the TeamUserJoinTable --- db/migrate/20140307050023_create_tournament_options.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 db/migrate/20140307050023_create_tournament_options.rb (limited to 'db/migrate/20140307050023_create_tournament_options.rb') diff --git a/db/migrate/20140307050023_create_tournament_options.rb b/db/migrate/20140307050023_create_tournament_options.rb new file mode 100644 index 0000000..53b601c --- /dev/null +++ b/db/migrate/20140307050023_create_tournament_options.rb @@ -0,0 +1,12 @@ +class CreateTournamentOptions < ActiveRecord::Migration + def change + create_table :tournament_options do |t| + t.references :tournament, index: true + t.integer :vartype + t.string :name + t.text :value + + t.timestamps + end + end +end -- cgit v1.2.3-2-g168b