Skip to content

Commit

Permalink
Merge pull request #5 from kithril/master
Browse files Browse the repository at this point in the history
bug #66: SQL implicit conversion of int to string causes Redmine 500 error
  • Loading branch information
tmerten committed Dec 22, 2014
2 parents 4a3dd6b + 30f84b1 commit ff15de1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class ReRating < ActiveRecord::Base
class DeleteRatingsAndCreateReRatings < ActiveRecord::Migration
def self.up
create_table :re_ratings do |t|
t.string :user_id
t.string :re_artifact_properties_id
t.integer :user_id
t.integer :re_artifact_properties_id
t.integer :value
end

Expand Down

0 comments on commit ff15de1

Please sign in to comment.