• R
    Dump index options to pretty format · 5025fd3a
    Ryuta Kamizono 提交于
    ```ruby
      # Before
      t.index ["firm_id", "type", "rating"], name: "company_index", order: {"rating"=>:desc}, using: :btree
    
      # After
      t.index ["firm_id", "type", "rating"], name: "company_index", order: { rating: :desc }, using: :btree
    ```
    5025fd3a
schema.rb 27.0 KB