From 2a1f5e121bc0baaccacb0740efc682edcf2ab6da Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 11 Apr 2010 14:38:19 +0200 Subject: [PATCH] DDC-442 - Fix example for timestamp optimistic lock --- manual/en/transactions-and-concurrency.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/en/transactions-and-concurrency.txt b/manual/en/transactions-and-concurrency.txt index 302efd37e..0729872e3 100644 --- a/manual/en/transactions-and-concurrency.txt +++ b/manual/en/transactions-and-concurrency.txt @@ -118,7 +118,7 @@ You could also just as easily use a datetime column and instead of incrementing class User { // ... - /** @Version @Column(type="integer") */ + /** @Version @Column(type="datetime") */ private $version; // ... } \ No newline at end of file