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/20140306024735_create_tournament_options.rb | |
parent | f72b55ce938a14313091a92d84c4083c3ba4f2fd (diff) |
use separate migrations to make things hidden, add user#groups:integer
Diffstat (limited to 'db/migrate/20140306024735_create_tournament_options.rb')
-rw-r--r-- | db/migrate/20140306024735_create_tournament_options.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20140306024735_create_tournament_options.rb b/db/migrate/20140306024735_create_tournament_options.rb new file mode 100644 index 0000000..d2df22e --- /dev/null +++ b/db/migrate/20140306024735_create_tournament_options.rb @@ -0,0 +1,8 @@ +class CreateTournamentOptions < ActiveRecord::Migration + def change + create_table :tournament_options do |t| + + t.timestamps + end + end +end |