aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
* Add a warning for enum elements with 'not_' prefix.Edu Depetris2019-06-301-0/+9
* Add "SCHEMA" to the query in `configure_connection` like as other adaptersRyuta Kamizono2019-06-281-1/+1
* warning: instance variable @serial not initialized (#36556)utilum2019-06-281-0/+10
* Fix broken url configseileencodes2019-06-271-1/+1
* Load initial database.yml once, and warn if we can't create taskseileencodes2019-06-272-9/+20
* Merge pull request #36210 from vishaltelangre/raise-record-invalid-when-assoc...Rafael França2019-06-241-1/+1
|\
| * Fix: ActiveRecord::RecordInvalid is not raised when an associated record fail...Vishal Telangre2019-05-101-1/+1
* | Schema Cache: extract deduplication commonalityKasper Timm Hansen2019-06-211-10/+15
* | Also deduplicate schema cache data when using the init_with interfaceJean Boussier2019-06-211-6/+6
* | Revert schema dumper to use strings rather than integerseileencodes2019-06-202-3/+3
* | Merge pull request #36518 from Shopify/drop-schema-cache-column-hashKasper Timm Hansen2019-06-191-8/+5
|\ \
| * | Stop serializing and parsing columns_hash in Active Record schema cachesJean Boussier2019-06-191-8/+5
* | | Better error message for calling columns_hashGuilherme Mansur2019-06-192-0/+7
|/ /
* | Merge pull request #35891 from Shopify/schema-cache-deduplicationKasper Timm Hansen2019-06-198-2/+105
|\ \
| * | Deduplicate various Active Record schema cache structuresJean Boussier2019-06-038-2/+105
* | | Avoid redundant `time.getutc` call if it is already utc time objectRyuta Kamizono2019-06-181-5/+5
* | | PostgreSQL: Fix GROUP BY with ORDER BY virtual count attributeRyuta Kamizono2019-06-171-10/+15
* | | No allocation `Arel::Visitors::ToSql#visit`Ryuta Kamizono2019-06-151-2/+2
* | | Move while_preventing_writes from conn to handlereileencodes2019-06-143-17/+19
* | | Merge pull request #36439 from eileencodes/move-schema-migration-to-migration...Eileen M. Uchitelle2019-06-146-32/+52
|\ \ \
| * | | Move SchemaMigration to migration_contexteileencodes2019-06-146-32/+52
* | | | Merge pull request #36484 from albertoalmagro/alberto/reverse-column-is-rever...Ryuta Kamizono2019-06-141-3/+3
|\ \ \ \ | |/ / / |/| | |
| * | | [ci skip] Update docs as `remove_column` can be reversedAlberto Almagro2019-06-141-3/+3
* | | | Allocation on demand in transactionsRyuta Kamizono2019-06-141-20/+35
|/ / /
* | | Make ActiveRecord `ConnectionPool.connections` thread-safe. (#36473)jeffdoering2019-06-131-1/+16
* | | Merge pull request #36472 from kamipo/empty_line_only_before_access_modifierRyuta Kamizono2019-06-1386-108/+0
|\ \ \
| * | | Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-1386-108/+0
* | | | Remove duplicated `table_exists?`Ryuta Kamizono2019-06-132-8/+0
* | | | Clear schema cache when a table is created/dropped/renamedRyuta Kamizono2019-06-134-0/+11
|/ / /
* | | Merge pull request #36440 from malept/multi-db-abort_if_pending_migrations-taskEileen M. Uchitelle2019-06-111-1/+25
|\ \ \
| * | | Convert the db:abort_if_pending_migrations task to be multi-DB awareMark Lee2019-06-101-1/+25
* | | | Allow column name with function (e.g. `length(title)`) as safe SQL stringRyuta Kamizono2019-06-104-8/+32
|/ / /
* | | Allow `column_name AS alias` as safe SQL stringRyuta Kamizono2019-06-104-0/+4
* | | Refactor `disallow_raw_sql!` to avoid `split(/\s*,\s*/)` to order argsRyuta Kamizono2019-06-096-21/+56
* | | Add forgotten nodoc to dump_schema method.Wojciech Wnętrzak2019-06-071-1/+1
* | | Merge pull request #36429 from bogdan/fix-preloading-duplicate-recordsRyuta Kamizono2019-06-071-1/+3
|\ \ \
| * | | Fix preloading on AR::Relation where records are duplicated by a joinBogdan Gusiev2019-06-061-1/+3
* | | | Merge pull request #36420 from kamipo/quoted_identifier_regexRyuta Kamizono2019-06-067-61/+137
|\ \ \ \
| * | | | Allow quoted identifier string as safe SQL stringRyuta Kamizono2019-06-067-61/+137
* | | | | Move schema cache from connection to pooleileencodes2019-06-055-6/+33
|/ / / /
* | | | Merge pull request #36416 from freeletics/fix-db-prepareEileen M. Uchitelle2019-06-052-19/+49
|\ \ \ \
| * | | | Fixed db:prepare task for multiple databases.Wojciech Wnętrzak2019-06-052-19/+49
* | | | | Merge pull request #36394 from eileencodes/treat-application-record-as-primaryEileen M. Uchitelle2019-06-051-2/+6
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Treat ActiveRecord::Base and ApplicationRecord as "primary"eileencodes2019-06-051-2/+6
| |/ / /
* / / / Fix sqlite3 collation parsing when using decimal columns.Martin Schuster2019-06-041-2/+2
|/ / /
* | | Merge pull request #36384 from guigs/fix-invalid-schema-when-pk-column-has-co...Ryuta Kamizono2019-06-031-1/+1
|\ \ \ | |/ / |/| |
| * | Fix invalid schema dump when primary key column has a commentGuilherme Goettems Schneider2019-06-031-1/+1
* | | Refactor `create_table`'s options separationRyuta Kamizono2019-06-032-12/+11
* | | Avoid making extra 5 arrays in each `save`Ryuta Kamizono2019-06-011-16/+26
|/ /
* | Fix table comment also being applied to the primary key columnGuilherme Goettems Schneider2019-05-311-1/+1