diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 21:14:48 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 21:14:48 -0500 |
commit | 31444c5a8cf56473a326227932dd36785c905ed1 (patch) | |
tree | d1398492d724eb4d9a32146e87596f7a0fb80622 /db/migrate/20140304020824_create_game_attributes.rb | |
parent | ec0ee835e8671fc5a421b7e7bcb54d4eec6deedb (diff) | |
parent | fefe3f469243d6c932c256cc8798bae35e4ff1c4 (diff) |
Merge branch 'master' of http://github.com/LukeShu/leaguer
Diffstat (limited to 'db/migrate/20140304020824_create_game_attributes.rb')
-rw-r--r-- | db/migrate/20140304020824_create_game_attributes.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140304020824_create_game_attributes.rb b/db/migrate/20140304020824_create_game_attributes.rb new file mode 100644 index 0000000..b63f134 --- /dev/null +++ b/db/migrate/20140304020824_create_game_attributes.rb @@ -0,0 +1,11 @@ +class CreateGameAttributes < ActiveRecord::Migration + def change + create_table :game_attributes do |t| + t.references :game, index: true + t.text :key + t.integer :type + + t.timestamps + end + end +end |