alexislefebvre/AsyncTweetsBundle

View on GitHub
src/Resources/config/doctrine/Media.orm.yml

Summary

Maintainability
Test Coverage
# generated by the following command:
# php app/console generate:doctrine:entity \
#  --entity=AsyncTweetsBundle:Media \
#  --fields="created_at:datetime text:string(255) retweet_count:integer \
#  favorite_count:integer" --format=yml

AlexisLefebvre\Bundle\AsyncTweetsBundle\Entity\Media:
    type: entity
    table: 'asynctweets_media'
    id:
        id:
            type: bigint
            id: true
    fields:
        media_url_https:
            type: string
            length: '255'
        url:
            type: string
            length: '255'
        display_url:
            type: string
            length: '255'
        expanded_url:
            type: string
            length: '255'
    manyToMany:
        tweets:
            targetEntity: Tweet
            mappedBy: medias
    lifecycleCallbacks: {  }