Explorar el 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 hace 13 años
padre
commit
87b3b3bf2c
Se han modificado 1 ficheros con 2 adiciones y 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;