Class: CreateEloTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateEloTable
- Defined in:
- lib/generators/has_elo/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
12 13 14 |
# File 'lib/generators/has_elo/migration.rb', line 12 def self.down drop_table :elo end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'lib/generators/has_elo/migration.rb', line 2 def self.up create_table :elo, :force => true do |t| t.references :eloable, polymorphic: true t.integer :rating, default: 0 t.integer :games_played, default: 0 t.boolean :pro, default: false t. end end |