aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2019-04-03 12:04:21 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2019-04-03 12:04:33 +0200
commit9864f5e3d693b53c3540637c562a5be6e1e2c66a (patch)
treec74e88c7f7eef014e8d9bd5f92f1f1e2c58e998f /activerecord/CHANGELOG.md
parentc1f6e46c2a437e135a071c488ab7fb7d21e4fd2d (diff)
downloadrails-9864f5e3d693b53c3540637c562a5be6e1e2c66a.tar.gz
rails-9864f5e3d693b53c3540637c562a5be6e1e2c66a.tar.bz2
rails-9864f5e3d693b53c3540637c562a5be6e1e2c66a.zip
[ci skip] Touch up `db:prepare` changelog entry
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6a857f55a4..f0396c3d53 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,4 +1,6 @@
-* Add `rake db:prepare` runs setup if database does not exist, or runs migrations if it does.
+* Add `rails db:prepare` to migrate or setup a database.
+
+ Runs `db:migrate` if the database exists or `db:setup` if it doesn't.
*Roberto Miranda*