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/20140307050029_create_game_options.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 db/migrate/20140307050029_create_game_options.rb (limited to 'db/migrate/20140307050029_create_game_options.rb') diff --git a/db/migrate/20140307050029_create_game_options.rb b/db/migrate/20140307050029_create_game_options.rb new file mode 100644 index 0000000..2f62ef7 --- /dev/null +++ b/db/migrate/20140307050029_create_game_options.rb @@ -0,0 +1,11 @@ +class CreateGameOptions < ActiveRecord::Migration + def change + create_table :game_options do |t| + t.integer :vartype + t.string :name + t.text :default + + t.timestamps + end + end +end -- cgit v1.2.3