summaryrefslogtreecommitdiff
path: root/db/migrate/20140429074434_create_matches.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20140429074434_create_matches.rb')
-rw-r--r--db/migrate/20140429074434_create_matches.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140429074434_create_matches.rb b/db/migrate/20140429074434_create_matches.rb
new file mode 100644
index 0000000..d80db5f
--- /dev/null
+++ b/db/migrate/20140429074434_create_matches.rb
@@ -0,0 +1,11 @@
+class CreateMatches < ActiveRecord::Migration
+ def change
+ create_table :matches do |t|
+ t.integer :status
+ t.references :tournament_stage, index: true
+ t.references :winner, index: true
+
+ t.timestamps
+ end
+ end
+end