diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-05 21:48:54 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-05 21:48:54 -0500 |
commit | d0545c2820d101a98b3c895cf6e3691145a62f3c (patch) | |
tree | b3bdb78ab94b2929c9bb7fdb2f6f257e58edc93e /db/migrate/20140306022631_create_matches.rb | |
parent | f72b55ce938a14313091a92d84c4083c3ba4f2fd (diff) |
use separate migrations to make things hidden, add user#groups:integer
Diffstat (limited to 'db/migrate/20140306022631_create_matches.rb')
-rw-r--r-- | db/migrate/20140306022631_create_matches.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/db/migrate/20140306022631_create_matches.rb b/db/migrate/20140306022631_create_matches.rb deleted file mode 100644 index 325863d..0000000 --- a/db/migrate/20140306022631_create_matches.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateMatches < ActiveRecord::Migration - def change - create_table :matches do |t| - t.references :tournament, index: true - t.string :name - - t.timestamps - end - end -end |