summaryrefslogtreecommitdiff
path: root/db/migrate/20140401215730_create_tournaments.rb
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-04-01 18:46:22 -0400
committernfoy <nfoy@purdue.edu>2014-04-01 18:46:22 -0400
commit2b79a033262dfe610eb22b7f6b3614db9cb134b1 (patch)
tree2bb77aa81022e7c01cccfb67127c7acd2fbb65aa /db/migrate/20140401215730_create_tournaments.rb
parentf08191c3966851b19edc949d7819cc58190037d7 (diff)
parente6b160bd81e51e0bd88e5c2563a06ea5f0d64620 (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db/migrate/20140401215730_create_tournaments.rb')
-rw-r--r--db/migrate/20140401215730_create_tournaments.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrate/20140401215730_create_tournaments.rb b/db/migrate/20140401215730_create_tournaments.rb
new file mode 100644
index 0000000..55f76a3
--- /dev/null
+++ b/db/migrate/20140401215730_create_tournaments.rb
@@ -0,0 +1,12 @@
+class CreateTournaments < ActiveRecord::Migration
+ def change
+ create_table :tournaments do |t|
+ t.string :name
+ t.references :game, index: true
+ t.integer :status
+ t.boolean :randomized_teams
+
+ t.timestamps
+ end
+ end
+end