Created
          January 18, 2015 16:54 
        
      - 
      
- 
        Save taion809/02d23dffa3e0b48bb3df to your computer and use it in GitHub Desktop. 
    FOSUserBundle User Mapping (YAML)
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # src/AppBundle/Resources/config/doctrine/User.orm.yml | |
| AppBundle\Entity\User: | |
| type: entity | |
| table: users | |
| id: | |
| id: | |
| type: integer | |
| generator: | |
| strategy: AUTO | |
| fields: | |
| username: | |
| type: string | |
| length: 255 | |
| column: username | |
| usernameCanonical: | |
| type: string | |
| length: 255 | |
| column: username_canonical | |
| unique: true | |
| email: | |
| type: string | |
| length: 255 | |
| column: email | |
| emailCanonical: | |
| type: string | |
| length: 255 | |
| column: email_canonical | |
| unique: true | |
| enabled: | |
| type: boolean | |
| column: enabled | |
| salt: | |
| type: string | |
| column: salt | |
| password: | |
| type: string | |
| column: password | |
| lastLogin: | |
| type: datetime | |
| nullable: true | |
| column: last_login | |
| locked: | |
| type: boolean | |
| column: locked | |
| expired: | |
| type: boolean | |
| column: expired | |
| expiresAt: | |
| type: datetime | |
| column: expires_at | |
| nullable: true | |
| confirmationToken: | |
| type: string | |
| column: confirmation_token | |
| nullable: true | |
| passwordRequestedAt: | |
| type: datetime | |
| column: password_requested_at | |
| nullable: true | |
| roles: | |
| type: array | |
| column: roles | |
| credentialsExpired: | |
| type: boolean | |
| column: credentials_expired | |
| credentialsExpireAt: | |
| type: datetime | |
| column: credentials_expire_at | |
| nullable: true | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment