1. 24 10月, 2017 13 次提交
  2. 23 10月, 2017 3 次提交
  3. 21 10月, 2017 2 次提交
  4. 20 10月, 2017 1 次提交
  5. 19 10月, 2017 1 次提交
  6. 18 10月, 2017 3 次提交
  7. 16 10月, 2017 3 次提交
    • E
      Remove association(true) references from docs [ci skip] · 5ea4cae9
      Eugene Kenny 提交于
      Passing `true` to force an association to reload its records from the
      database was deprecated in 5.0 and removed in 5.1.
      5ea4cae9
    • B
      `ActiveRecord::Tasks::DatabaseTasks.load_schema` has always to establish database connection · 678e563d
      bogdanvlviv 提交于
        When load schema from `structure.sql`, database connection isn't
        established. `ActiveRecord::Tasks::DatabaseTasks.load_schema` has to
        establish database connection since it executes
        ```
        ActiveRecord::InternalMetadata.create_table
        ActiveRecord::InternalMetadata[:environment] = environment
        ```
      678e563d
    • B
      Fix `bin/rails db:setup` and `bin/rails db:test:prepare` create wrong... · 99b2bf8d
      bogdanvlviv 提交于
      Fix `bin/rails db:setup` and `bin/rails db:test:prepare` create  wrong ar_internal_metadata's data for a test database.
      
        Before:
        ```
        $ RAILS_ENV=test rails dbconsole
        > SELECT * FROM ar_internal_metadata;
        key|value|created_at|updated_at
        environment|development|2017-09-11 23:14:10.815679|2017-09-11 23:14:10.815679
        ```
      
        After:
        ```
        $ RAILS_ENV=test rails dbconsole
        > SELECT * FROM ar_internal_metadata;
        key|value|created_at|updated_at
        environment|test|2017-09-11 23:14:10.815679|2017-09-11 23:14:10.815679
        ```
      
        Fixes #26731.
      99b2bf8d
  8. 15 10月, 2017 3 次提交
  9. 14 10月, 2017 2 次提交
  10. 11 10月, 2017 1 次提交
  11. 09 10月, 2017 8 次提交