summaryrefslogtreecommitdiff
path: root/db/migrate/20140304020359_create_matches.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 18:01:55 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 18:01:55 -0500
commit723b767367e8e6d574139ebee081c142a6288173 (patch)
tree88b1aef4acf6f5d43e36eb218690bfd2a4c258f3 /db/migrate/20140304020359_create_matches.rb
parenteaf3d3cddf418c560c9619f722ea1dbc5d6cc61a (diff)
parent30f922247cd818aa2025aa126d8d3ad197a40eda (diff)
Finished sessions and updated user model
Diffstat (limited to 'db/migrate/20140304020359_create_matches.rb')
-rw-r--r--db/migrate/20140304020359_create_matches.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20140304020359_create_matches.rb b/db/migrate/20140304020359_create_matches.rb
new file mode 100644
index 0000000..6c0c157
--- /dev/null
+++ b/db/migrate/20140304020359_create_matches.rb
@@ -0,0 +1,9 @@
+class CreateMatches < ActiveRecord::Migration
+ def change
+ create_table :matches do |t|
+ t.references :tournament, index: true
+
+ t.timestamps
+ end
+ end
+end