summaryrefslogtreecommitdiff
path: root/db/migrate/20140407000048_create_scores.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-04-06 22:05:17 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-04-06 22:05:17 -0400
commitaa7f5b6daa1012023f34c53f7772ca5567824e94 (patch)
tree4157fe9de1e84fc4cc9d5f7c5785a329d4ad5369 /db/migrate/20140407000048_create_scores.rb
parentdd46c4b23640b0719e16e874b8f593e159b54a3c (diff)
parent5084f01e0ea7ba7c378982099fdbf9880857f091 (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db/migrate/20140407000048_create_scores.rb')
-rw-r--r--db/migrate/20140407000048_create_scores.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140407000048_create_scores.rb b/db/migrate/20140407000048_create_scores.rb
new file mode 100644
index 0000000..4ca0b0b
--- /dev/null
+++ b/db/migrate/20140407000048_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