| Commit message (Expand) | Author | Age | Files | Lines |
* | Minor changes to deprecation warning message after 35242 | Abhay Nikam | 2019-02-15 | 1 | -2/+2 |
* | Revert "Chaining named scope is no longer leaking to class level querying met... | Ryuta Kamizono | 2019-02-14 | 1 | -6/+0 |
* | Update CHANGELOG for database_resolver_context | John Hawthorn | 2019-02-07 | 1 | -2/+2 |
* | Fix `relation.create` to avoid leaking scope to initialization block and call... | Ryuta Kamizono | 2019-02-07 | 1 | -0/+6 |
* | Chaining named scope is no longer leaking to class level querying methods | Ryuta Kamizono | 2019-02-06 | 1 | -0/+6 |
* | Adds basic automatic database switching to Rails | Eileen Uchitelle | 2019-01-30 | 1 | -0/+33 |
* | Allow changing text and blob size without giving the `limit` option | Ryuta Kamizono | 2019-01-29 | 1 | -0/+4 |
* | Make `t.timestamps` with precision by default | Ryuta Kamizono | 2019-01-26 | 1 | -0/+5 |
* | Preparing for 6.0.0.beta1 release | Rafael Mendonça França | 2019-01-18 | 1 | -0/+2 |
* | Merge pull request #34966 from bogdanvlviv/ensure-ar-relation-exists-allows-p... | Rafael Mendonça França | 2019-01-17 | 1 | -1/+1 |
|\ |
|
| * | Ensure that AR::Relation#exists? allows only permitted params | bogdanvlviv | 2019-01-17 | 1 | -4/+4 |
* | | Remove deprecated `#set_state` from the transaction object | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Remove deprecated `#supports_statement_cache?` from the database adapters | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Remove deprecated `#insert_fixtures` from the database adapters | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Remove deprecated `ActiveRecord::ConnectionAdapters::SQLite3Adapter#valid_alt... | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Do not allow passing the column name to `sum` when a block is passed | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Do not allow passing the column name to `count` when a block is passed | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Remove delegation of missing methods in a relation to arel | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Remove delegation of missing methods in a relation to private methods of the ... | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Change `SQLite3Adapter` to always represent boolean values as integers | Rafael Mendonça França | 2019-01-17 | 1 | -0/+8 |
* | | Remove ability to specify a timestamp name for `#cache_key` | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Remove deprecated `ActiveRecord::Migrator.migrations_path=` | Rafael Mendonça França | 2019-01-17 | 1 | -0/+4 |
* | | Remove deprecated `expand_hash_conditions_for_aggregates` | Rafael Mendonça França | 2019-01-17 | 1 | -3/+7 |
|/ |
|
* | Refs #28025 nullify *_type column on polymorphic associations on :nu… (#28... | Laerti | 2019-01-15 | 1 | -0/+5 |
* | Merge branch 'master' into ac_params_exists | Aaron Patterson | 2019-01-11 | 1 | -0/+5 |
|\ |
|
| * | Support endless ranges in where | Greg Navis | 2019-01-11 | 1 | -0/+4 |
* | | Allow strong params in ActiveRecord::Base#exists? | Gannon McGibbon | 2019-01-07 | 1 | -0/+4 |
|/ |
|
* | Deprecate passing `migrations_paths` to `connection.assume_migrated_upto_vers... | Ryuta Kamizono | 2018-12-28 | 1 | -0/+4 |
* | Merge pull request #34742 from kamipo/row_format_dynamic_by_default | Ryuta Kamizono | 2018-12-21 | 1 | -0/+8 |
|\ |
|
| * | MySQL: `ROW_FORMAT=DYNAMIC` create table option by default | Ryuta Kamizono | 2018-12-19 | 1 | -0/+8 |
* | | Require Ruby 2.5 for Rails 6. | Kasper Timm Hansen | 2018-12-19 | 1 | -2/+2 |
|/ |
|
* | Fix join table column quoting with SQLite. | Gannon McGibbon | 2018-12-05 | 1 | -0/+4 |
* | option to disable scopes that `ActiveRecord.enum` generates by default | Alfred Dominic | 2018-12-04 | 1 | -0/+4 |
* | Merge pull request #34609 from kamipo/delete_all_on_collection_proxy | Ryuta Kamizono | 2018-12-04 | 1 | -0/+4 |
|\ |
|
| * | Ensure that `delete_all` on collection proxy returns affected count | Ryuta Kamizono | 2018-12-04 | 1 | -0/+4 |
* | | Reset scope after collection delete | Gannon McGibbon | 2018-12-04 | 1 | -0/+4 |
|/ |
|
* | Add ability to prevent writes to a database | Eileen Uchitelle | 2018-11-30 | 1 | -0/+16 |
* | Allow aliased attributes in update | Gannon McGibbon | 2018-11-29 | 1 | -0/+4 |
* | Allow spaces in postgres table names | Gannon McGibbon | 2018-11-28 | 1 | -0/+6 |
* | Cached columns_hash fields should be excluded from ResultSet#column_types | DmitryTsepelev | 2018-11-27 | 1 | -0/+29 |
* | Make implicit order column configurable | Tekin Suleyman | 2018-11-26 | 1 | -0/+17 |
* | Bump the minimum version of PostgreSQL to 9.3 | Yasuo Honda | 2018-11-25 | 1 | -0/+4 |
* | Raises error when attempting to modify enum values | ebyrds | 2018-11-23 | 1 | -0/+4 |
* | Redact SQL in errors | Gannon McGibbon | 2018-11-22 | 1 | -0/+20 |
* | Add an :if_not_exists option to create_table | fatkodima | 2018-11-08 | 1 | -0/+19 |
* | Guard Enums against definitions with blank label names | Christophe Maximin | 2018-11-07 | 1 | -1/+5 |
* | Add multi-db support to schema cache dump and clear | Gannon McGibbon | 2018-11-07 | 1 | -0/+4 |
* | `update_columns` raises if the column is unknown | Sean Griffin | 2018-10-30 | 1 | -0/+5 |
* | Add support for hash and url configs in connected_to | Gannon McGibbon | 2018-10-26 | 1 | -0/+15 |
* | Merge pull request #34208 from yskkin/inspect_with_parameter_filter | Ryuta Kamizono | 2018-10-26 | 1 | -3/+3 |
|\ |
|