rails/activerecord/test/schema
Ryuta Kamizono 5025fd3a99 Dump index options to pretty format
```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
```
2016-10-10 11:53:22 +09:00
..
mysql2_specific_schema.rb applies new string literal convention in activerecord/test 2016-08-06 18:26:53 +02:00
oracle_specific_schema.rb tests, favor public API over inspecting columns where possible. 2014-12-01 16:57:48 +01:00
postgresql_specific_schema.rb applies new string literal convention in activerecord/test 2016-08-06 18:26:53 +02:00
schema.rb Dump index options to pretty format 2016-10-10 11:53:22 +09:00
sqlite_specific_schema.rb Remove unused table_with_autoincrement table 2016-04-19 17:17:19 +09:00