• K
    Allow #nulls_first and #nulls_last in PostgreSQL · 66b19b5d
    Kevin Deisz 提交于
    When using PostgreSQL, it's useful to be able to specify NULLS FIRST and NULLS LAST on ordered columns. With this commit you can do that now, as in:
    
    ```ruby
    User.arel_table[:first_name].desc.nulls_last
    ```
    66b19b5d
postgresql.rb 3.4 KB