Explorar o código

Timestamp type causes incorrect dates to be set.

If you use @ODM\Timestamp as the type for Timestampable fields,
the dates get stored incorrectly in MongoDB. Using Date for both
created and updated fixes the issue.

Phil Moorhouse %!s(int64=13) %!d(string=hai) anos
pai
achega
87b3b3bf2c
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      doc/timestampable.md

+ 2 - 2
doc/timestampable.md

@@ -165,9 +165,9 @@ class Article
     private $title;
 
     /**
-     * @var timestamp $created
+     * @var date $created
      *
-     * @ODM\Timestamp
+     * @ODM\Date
      * @Gedmo\Timestampable(on="create")
      */
     private $created;