wazery/ratyrate

View on GitHub
lib/generators/ratyrate/templates/cache_migration.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateRatingCaches < ActiveRecord::Migration<%= migration_version %>

  def self.up
      create_table :rating_caches do |t|
        t.belongs_to :cacheable, :polymorphic => true
        t.float :avg, :null => false
        t.integer :qty, :null => false
        t.string :dimension
        t.timestamps
      end

      add_index :rating_caches, [:cacheable_id, :cacheable_type]
    end

    def self.down
      drop_table :rating_caches
    end

end