1
0
mirror of synced 2025-01-18 22:41:43 +03:00

fix sequence generator php code on sequenceName

This commit is contained in:
Toni Uebernickel 2011-09-13 20:32:04 +02:00
parent 8084b6cbf0
commit 3ec55d0cdd

View File

@ -557,7 +557,7 @@ besides specifying the sequence's name:
/**
* @Id
* @GeneratedValue(strategy="SEQUENCE")
* @SequenceGenerator(name="tablename_seq", initialValue=1, allocationSize=100)
* @SequenceGenerator(sequenceName="tablename_seq", initialValue=1, allocationSize=100)
*/
protected $id = null;
}