aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index f833ed21e3..acdf7d40f8 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,8 @@
-* Remove `initialize_schema_migrations_table` and `initialize_internal_metadata_table`
- internal public methods.
+* Deprecate `initialize_schema_migrations_table` and `initialize_internal_metadata_table`.
+
+ *Ryuta Kamizono*
+
+* Support foreign key creation for SQLite3.
*Ryuta Kamizono*
@@ -7,7 +10,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 +436,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.