Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move CHANGELOG entry about database notices at the top [ci skip] #24601

Merged
merged 1 commit into from
Apr 18, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 20 additions & 23 deletions activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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