summaryrefslogtreecommitdiff
path: root/db/migrate/20140325212823_create_matches.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
commit0c22c4bd9a0b4a0b0ff5840c1af41c0b320e3529 (patch)
tree2fc2082814e513ec5d68b22e7fa07d268df6d788 /db/migrate/20140325212823_create_matches.rb
parent8435c0a5ec9889a9da6ede2e24c044d64b279095 (diff)
added match status
Diffstat (limited to 'db/migrate/20140325212823_create_matches.rb')
-rw-r--r--db/migrate/20140325212823_create_matches.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20140325212823_create_matches.rb b/db/migrate/20140325212823_create_matches.rb
new file mode 100644
index 0000000..30949a8
--- /dev/null
+++ b/db/migrate/20140325212823_create_matches.rb
@@ -0,0 +1,12 @@
+class CreateMatches < ActiveRecord::Migration
+ def change
+ create_table :matches do |t|
+ t.integer :status
+ t.references :tournament, index: true
+ t.string :name
+ t.references :winner, index: true
+
+ t.timestamps
+ end
+ end
+end