summaryrefslogtreecommitdiff
path: root/db/migrate/20140304014913_create_matches.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-02-27 17:56:31 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-02-27 17:56:31 -0500
commit6e20d92989739bde287c6a07c03ae3f70755660b (patch)
treed97daa288344bff14f6c59588c10b4d1eb3eed63 /db/migrate/20140304014913_create_matches.rb
parentcd1fabe40ca4d290df33a2590f3a1f2072103972 (diff)
Booted the strap
Diffstat (limited to 'db/migrate/20140304014913_create_matches.rb')
-rw-r--r--db/migrate/20140304014913_create_matches.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20140304014913_create_matches.rb b/db/migrate/20140304014913_create_matches.rb
new file mode 100644
index 0000000..6c0c157
--- /dev/null
+++ b/db/migrate/20140304014913_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