Merge pull request #24601 from prathamesh-sonpatki/fix-ar-changelog

Move CHANGELOG entry about database notices at the top [ci skip]
This commit is contained in:
Jeremy Daer 2016-04-17 22:30:52 -07:00
commit 781271b3b0

@ -1,3 +1,22 @@
* Added notice when a database is successfully created or dropped.
Example:
$ bin/rails db:create
Created database 'blog_development'
Created database 'blog_test'
$ bin/rails db:drop
Dropped database 'blog_development'
Dropped database 'blog_test'
Changed older notices
`blog_development already exists` to `Database 'blog_development' already exists`.
and
`Couldn't drop blog_development` to `Couldn't drop database 'blog_development'`.
*bogdanvlviv*
* Database comments. Annotate database objects (tables, columns, indexes)
with comments stored in database metadata. PostgreSQL & MySQL support.
@ -10,7 +29,7 @@
*Andrey Novikov*
* Add `quoted_time` for truncating the date part of a TIME column value.
This fixes queries on TIME column on MariaDB, as it doesn't ignore the
This fixes queries on TIME column on MariaDB, as it doesn't ignore the
date part of the string when it coerces to time.
*Ryuta Kamizono*
@ -21,28 +40,6 @@
*Sean Griffin*
* Added notice when a database is successfully created or dropped.
Example:
```
$ bin/rails db:create
Created database 'blog_development'
Created database 'blog_test'
```
```
$ bin/rails db:drop
Dropped database 'blog_development'
Dropped database 'blog_test'
```
Changed older notices
`blog_development already exists` to `Database 'blog_development' already exists`
and
`Couldn't drop blog_development` to `Couldn't drop database 'blog_development'`.
*bogdanvlviv*
* MariaDB 5.3+ supports microsecond datetime precision.
*Jeremy Daer*