summaryrefslogtreecommitdiff
path: root/db/migrate/20140307052413_create_scores.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-07 00:31:47 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-07 00:31:47 -0500
commit1ecd3d50d0ac73968362f885c9f60ec38253be9a (patch)
tree324f79ad4d4da1af623fc93f215643287d6210f3 /db/migrate/20140307052413_create_scores.rb
parentb2e0b1397596ee8f624ef4de122cc71599d4dc0d (diff)
parentc1f714a479eb7ca9e9125e283361a471dd928278 (diff)
Merge branch 'clean'
Conflicts: app/models/match.rb app/views/matches/index.html.erb app/views/matches/show.html.erb
Diffstat (limited to 'db/migrate/20140307052413_create_scores.rb')
-rw-r--r--db/migrate/20140307052413_create_scores.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140307052413_create_scores.rb b/db/migrate/20140307052413_create_scores.rb
new file mode 100644
index 0000000..4ca0b0b
--- /dev/null
+++ b/db/migrate/20140307052413_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