DevelopingCoder/cs61a_hintr

View on GitHub
db/migrate/20161116011313_create_hint_votes.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateHintVotes < ActiveRecord::Migration
  def change
    create_table :hint_votes do |t|
      t.integer :vote_type
      t.references :user
      t.references :hint
    end
  end
end