aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-23 06:26:20 -0800
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-23 06:26:20 -0800
commit2647a3cabfb88ac0dac318207bf611b0b66d495f (patch)
tree6eeef63a41866e2571ccf4f5157d2abadd5e4e50 /activerecord/CHANGELOG.md
parent0c1558d32fe7f3198ef598ce552ea89a04ab7793 (diff)
parent8f6fa345e5c865acefa063c3e2cd62553fa9f2eb (diff)
downloadrails-2647a3cabfb88ac0dac318207bf611b0b66d495f.tar.gz
rails-2647a3cabfb88ac0dac318207bf611b0b66d495f.tar.bz2
rails-2647a3cabfb88ac0dac318207bf611b0b66d495f.zip
Merge pull request #9388 from senny/9367_wrong_schema_after_remove_column
Sqlite preserves primary keys when copying/altering tables.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index cd105b8355..db4820b3d2 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,11 @@
## unreleased ##
+* Sqlite now preserves custom primary keys when copying or altering tables.
+ Fixes #9367.
+ Backport #2312.
+
+ *Sean Scally + Yves Senn*
+
* Preloading `has_many :through` associations with conditions won't
cache the `:through` association. This will prevent invalid
subsets to be cached.