diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-04-23 21:47:34 -0400 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-04-23 21:47:34 -0400 |
commit | 8003c0f8326f231b6e0c8bb29feb48736271ea21 (patch) | |
tree | ec0fcef385cac365f6a0f2c3f348ef8a3d65d090 /db/migrate/20140424014443_create_statistics.rb | |
parent | 8010bd28db76dd5783b2be046de4c63fa27738f6 (diff) | |
parent | cfa41fcc58acc9ae50b84eb51e3d9fa9ecb3b79e (diff) |
Merge branch 'clean2'
Conflicts:
app/models/game.rb
Diffstat (limited to 'db/migrate/20140424014443_create_statistics.rb')
-rw-r--r-- | db/migrate/20140424014443_create_statistics.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20140424014443_create_statistics.rb b/db/migrate/20140424014443_create_statistics.rb new file mode 100644 index 0000000..cc2e97d --- /dev/null +++ b/db/migrate/20140424014443_create_statistics.rb @@ -0,0 +1,12 @@ +class CreateStatistics < ActiveRecord::Migration + def change + create_table :statistics do |t| + t.references :user, index: true + t.references :match, index: true + t.string :name + t.integer :value + + t.timestamps + end + end +end |