1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/active_record/validations
Ryuta Kamizono b80d304f11 Refactor case_{sensitive|insensitive}_comparison
Before:

    ```
    SELECT  1 AS one FROM "topics" WHERE "topics"."title" = 'abc' LIMIT $1  [["LIMIT", 1]]
    ```

After:

    ```
    SELECT  1 AS one FROM "topics" WHERE "topics"."title" = $1 LIMIT $2 [["title", "abc"], ["LIMIT", 1]]
    ```
2016-01-01 07:33:54 +09:00
..
absence.rb
associated.rb Improve support for non Active Record objects on validates_associated 2015-11-08 10:58:39 -02:00
length.rb
presence.rb
uniqueness.rb Refactor case_{sensitive|insensitive}_comparison 2016-01-01 07:33:54 +09:00