StoreCache

Aggrosoft\ExtranetBundle\Entity\StoreCache
4
Columns
1
Relations
5
Properties

Relationships

Click entity to navigate
erDiagram
    StoreCache {
                string id PK
                string entityId
                string entityType
                datetime created
                    }
                StoreCache }o--|| Store : "store"
        Store {
        int id PK
    }
                    

Metadaten

Tabelle storecache
Bundle ExtranetBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
entityId entityId string(255)
{{ entity.entityId }}
entityType entityType string(255)
{{ entity.entityType }}
created created datetime
{{ entity.created }}

Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar. Verwende {{ entity.propertyName }} zum Lesen.

Property Access Twig Usage Methods Return Type
id DB
read
{{ entity.id }}
getId()
string
created DB
read write
{{ entity.created }}
getCreated()
setCreated()
\DateTime
store DB
read write
{{ entity.store }}
getStore()
setStore()
\Aggrosoft\ExtranetBundle\Entity\Store
entityId DB
read write
{{ entity.entityId }}
getEntityId()
setEntityId()
string
entityType DB
read write
{{ entity.entityType }}
getEntityType()
setEntityType()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
store ManyToOne Store - - - {{ entity.store }}
Keine Indexes definiert