Skip to content

Commit

Permalink
Merge pull request #24601 from prathamesh-sonpatki/fix-ar-changelog
Browse files Browse the repository at this point in the history
Move CHANGELOG entry about database notices at the top [ci skip]
  • Loading branch information
jeremy committed Apr 18, 2016
2 parents 847084e + dbaef76 commit 781271b
Showing 1 changed file with 20 additions and 23 deletions.
43 changes: 20 additions & 23 deletions activerecord/CHANGELOG.md
@@ -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.

Expand All @@ -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*
Expand All @@ -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*
Expand Down

0 comments on commit 781271b

Please sign in to comment.