20150701122801_create_community_ratings.rb 229 Bytes
class CreateCommunityRatings < ActiveRecord::Migration
  def change
    create_table :community_ratings do |t|
      t.belongs_to :community
      t.belongs_to :person
      t.integer :value

      t.timestamps
    end
  end
end