diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-04-04 21:26:30 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-04-04 21:26:30 -0400 |
commit | 1237ba91e19972d71dc81f57d847798a3ed88a63 (patch) | |
tree | 5b0a4c1cc60b53848634c26e102cadb0efee4de7 /db/migrate/20140405012524_create_scores.rb | |
parent | d421e2ce782c00fa77f6aa2f18d54eb429000c9f (diff) | |
parent | faf4db767165d199b14777cebc70a37812313f08 (diff) |
Merge branch 'clean2'
Diffstat (limited to 'db/migrate/20140405012524_create_scores.rb')
-rw-r--r-- | db/migrate/20140405012524_create_scores.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140405012524_create_scores.rb b/db/migrate/20140405012524_create_scores.rb new file mode 100644 index 0000000..4ca0b0b --- /dev/null +++ b/db/migrate/20140405012524_create_scores.rb @@ -0,0 +1,11 @@ +class CreateScores < ActiveRecord::Migration + def change + create_table :scores do |t| + t.references :user, index: true + t.references :match, index: true + t.integer :value + + t.timestamps + end + end +end |