summaryrefslogtreecommitdiff
path: root/db/migrate/20140424230635_create_statistics.rb
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-04-24 19:15:27 -0400
committernfoy <nfoy@purdue.edu>2014-04-24 19:15:27 -0400
commitddfe11c0444cf424cad3d14bc9be48d32423f3dd (patch)
tree135db4cd6bf22380953315ea1244f720a5419e2d /db/migrate/20140424230635_create_statistics.rb
parent1b11684986136ee87da6242c3ba6aba5ef581510 (diff)
parent67d95e5b92e3d19765c7ccaf5460737ffe2173f4 (diff)
Merge branch 'clean2'
Conflicts: app/models/pm.rb app/views/pms/index.html.erb app/views/pms/show.html.erb
Diffstat (limited to 'db/migrate/20140424230635_create_statistics.rb')
-rw-r--r--db/migrate/20140424230635_create_statistics.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20140424230635_create_statistics.rb b/db/migrate/20140424230635_create_statistics.rb
new file mode 100644
index 0000000..cc2e97d
--- /dev/null
+++ b/db/migrate/20140424230635_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