Class: CreateRatings
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateRatings
- Defined in:
- lib/generators/rateme/templates/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
11 12 13 |
# File 'lib/generators/rateme/templates/migration.rb', line 11 def self.down drop_table :ratings end |
.up ⇒ Object
2 3 4 5 6 7 8 9 |
# File 'lib/generators/rateme/templates/migration.rb', line 2 def self.up create_table :ratings, :force => true do |t| t.belongs_to :rateable, :polymorphic => true t.integer :value, :default => 0 t.string :ip_address t. end end |