aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMehmet Emin INAC <mehmetemininac@gmail.com>2018-09-22 16:47:57 +0200
committerMehmet Emin INAC <mehmetemininac@gmail.com>2018-09-22 16:47:57 +0200
commit5e4c22dfbb6dad676f74ded50b8c2536834a46a7 (patch)
tree2b6bd330ddeb2faa9848f84e33a72cfb50693011 /activerecord/CHANGELOG.md
parentd3b952184d8bdb6154aff1f8bc3eda58046026f6 (diff)
downloadrails-5e4c22dfbb6dad676f74ded50b8c2536834a46a7.tar.gz
rails-5e4c22dfbb6dad676f74ded50b8c2536834a46a7.tar.bz2
rails-5e4c22dfbb6dad676f74ded50b8c2536834a46a7.zip
Index option added for change_table migrations
In case if we want to add a column into the existing table with index on it, we have to add column and index in two seperate lines. With this feature we don't need to write an extra line to add index for column. We can just use `index` option. Old behaviour in action: ``` change_table(:languages) do |t| t.string :country_code t.index: :country_code end ``` New behaviour in action: ``` change_table(:languages) do |t| t.string :country_code, index: true end ``` Exactly same behaviour is already exist for `create_table` migrations.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index cfc5647969..8bdcdbda9b 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,15 @@
+* Added `index` option for `change_table` migration helpers.
+ With this change you can create indexes while adding new
+ columns into the existing tables.
+
+ Example:
+
+ change_table(:languages) do |t|
+ t.string :country_code, index: true
+ end
+
+ *Mehmet Emin İNAÇ*
+
* Don't update counter cache unless the record is actually saved.
Fixes #31493, #33113, #33117.