Skip to content

Commit

Permalink
Remove length limit that results failure in other tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
zuhao committed Jul 22, 2014
1 parent cee2c85 commit 8e30a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/test/cases/migration_test.rb
Expand Up @@ -63,7 +63,7 @@ def setup
end
Person.connection.remove_column("people", "first_name") rescue nil
Person.connection.remove_column("people", "middle_name") rescue nil
Person.connection.add_column("people", "first_name", :string, :limit => 40)
Person.connection.add_column("people", "first_name", :string, null: false)
Person.reset_column_information
end

Expand Down

0 comments on commit 8e30a63

Please sign in to comment.