aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-01-19 12:09:47 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-01-19 12:09:47 +0900
commitb8de7ae9a35b029c92445a112d20d943249c3f42 (patch)
tree6af032a03d7ce45d1dde251ac6af4f52781edd03 /activerecord
parentf2c29ec27b058e115e969833d8ddb9bebc2ac901 (diff)
downloadrails-b8de7ae9a35b029c92445a112d20d943249c3f42.tar.gz
rails-b8de7ae9a35b029c92445a112d20d943249c3f42.tar.bz2
rails-b8de7ae9a35b029c92445a112d20d943249c3f42.zip
Add CHANGELOG entry for #24743
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index f833ed21e3..4b8e8f555d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Support foreign key creation for SQLite3.
+
+ *Ryuta Kamizono*
+
* Remove `initialize_schema_migrations_table` and `initialize_internal_metadata_table`
internal public methods.
@@ -7,7 +11,7 @@
*Kevin Glowacz*
-* Raise `ActiveRecord::InvalidForeignKey` when a foreign key constraint fails on Sqlite3.
+* Raise `ActiveRecord::InvalidForeignKey` when a foreign key constraint fails on SQLite3.
*Ryuta Kamizono*
@@ -433,7 +437,7 @@
*Ryuta Kamizono*
-* Sqlite3 migrations to add a column to an existing table can now be
+* SQLite3 migrations to add a column to an existing table can now be
successfully rolled back when the column was given and invalid column
type.