aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/test/dummy/db/migrate/20180208205311_create_action_mailbox_tables.rb
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Apply `t.timestamps` changes in Action Text and Action Mailbox"Ryuta Kamizono2019-01-291-0/+13
| | | | This reverts commit 30f666f87ab873258b797b39f29cf852f7621bea.
* Apply `t.timestamps` changes in Action Text and Action MailboxRyuta Kamizono2019-01-291-13/+0
| | | | Follow up #34956.
* Make `t.timestamps` with precision by defaultRyuta Kamizono2019-01-261-5/+1
|
* Allow using Action Mailbox on MySQL 5.5Ryuta Kamizono2019-01-181-0/+17
Active Record still support MySQL 5.5 which doesn't support datetime with precision. https://github.com/rails/rails/blob/9e34df00039d63b5672315419e76f06f80ef3dc4/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb#L99-L101 So we should check `supports_datetime_with_precision?` on the connection.