aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-04-03 13:08:54 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-04-03 13:08:54 +0900
commit96f0114e082b116856e945b075abd747eff0e63e (patch)
treeb10d55667ef6e88fa766a72ab6daf7805a954d3d /activerecord/CHANGELOG.md
parentbffacccc6a60d9f47b7ac2e7edafda0a66f59ddd (diff)
downloadrails-96f0114e082b116856e945b075abd747eff0e63e.tar.gz
rails-96f0114e082b116856e945b075abd747eff0e63e.tar.bz2
rails-96f0114e082b116856e945b075abd747eff0e63e.zip
Use official database name [ci skip]
* s/Postgres/PostgreSQL/ * s/MYSQL/MySQL/, s/Mysql/MySQL/ * s/Sqlite/SQLite/ Replaced all newly added them after 6089b31.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a191f50da7..b8ddb0cf76 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -79,7 +79,7 @@
bulk deletes by `delete_all`.
Supports skipping or upserting duplicates through the `ON CONFLICT` syntax
- for Postgres (9.5+) and Sqlite (3.24+) and `ON DUPLICATE KEY UPDATE` syntax
+ for PostgreSQL (9.5+) and SQLite (3.24+) and `ON DUPLICATE KEY UPDATE` syntax
for MySQL.
*Bob Lail*