]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/changeset.rb
Remove redundant presence validation on belongs_to
[rails.git] / app / models / changeset.rb
index aa674ea7fc5391ec781119e20f07d5bcef478332..9ed22ee947c5cea350855a83c9280131614ebcf0 100644 (file)
@@ -44,8 +44,6 @@ class Changeset < ApplicationRecord
 
   validates :id, :uniqueness => true, :presence => { :on => :update },
                  :numericality => { :on => :update, :only_integer => true }
-  validates :user_id, :presence => true,
-                      :numericality => { :only_integer => true }
   validates :num_changes, :presence => true,
                           :numericality => { :only_integer => true,
                                              :greater_than_or_equal_to => 0 }