2016-01-22 73 views
0

我的MySQL db(bigint 20)中設置的值爲bigint。當我以超過10個字符的形式設置值時,如「1234567890123」;我收到一條錯誤消息:This value is not validsymfony 2驗證超過10個長度值的形式bigint?

User.orm.yml

AppBundle\Entity\User: 
type: entity 
table: null 
repositoryClass: AppBundle\Repository\UserRepository 
id: 
    id: 
     type: integer 
     id: true 
     generator: 
      strategy: AUTO 
fields: 
    fbId: 
     type: bigint 
     options: 
      unsigned: true 
    firstName: 
     type: string 
     length: 255 

View form:

MySql

+0

另外我嘗試了沒有選項:unsigned:true – tokoret

+0

您可以向我們展示您的用戶實體的FormType和驗證器嗎? – MouradK

回答