diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 18:01:55 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 18:01:55 -0500 |
commit | 723b767367e8e6d574139ebee081c142a6288173 (patch) | |
tree | 88b1aef4acf6f5d43e36eb218690bfd2a4c258f3 /db/migrate/20140304020419_create_games.rb | |
parent | eaf3d3cddf418c560c9619f722ea1dbc5d6cc61a (diff) | |
parent | 30f922247cd818aa2025aa126d8d3ad197a40eda (diff) |
Finished sessions and updated user model
Diffstat (limited to 'db/migrate/20140304020419_create_games.rb')
-rw-r--r-- | db/migrate/20140304020419_create_games.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20140304020419_create_games.rb b/db/migrate/20140304020419_create_games.rb new file mode 100644 index 0000000..59d4ef0 --- /dev/null +++ b/db/migrate/20140304020419_create_games.rb @@ -0,0 +1,13 @@ +class CreateGames < ActiveRecord::Migration + def change + create_table :games do |t| + t.text :name + t.integer :players_per_team + t.integer :teams_per_match + t.integer :set_rounds + t.integer :randomized_teams + + t.timestamps + end + end +end |