HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: /virtual/nagasaki/public_html/ec/src/Eccube/Resource/doctrine/Eccube.Entity.Block.dcm.yml
Eccube\Entity\Block:
    type: entity
    table: dtb_block
    repositoryClass: Eccube\Repository\BlockRepository
    uniqueConstraints:
        device_type_id:
            columns:
                - device_type_id
                - file_name
    id:
        id:
            type: integer
            nullable: false
            unsigned: false
            id: true
            column: block_id
            generator:
                strategy: AUTO
    fields:
        name:
            type: text
            column: block_name
            nullable: true
        file_name:
            type: string
            length: 200
            nullable: false
        create_date:
            type: datetime
            nullable: false
        update_date:
            type: datetime
            nullable: false
        logic_flg:
            type: smallint
            nullable: false
            unsigned: false
            options:
                default: '1'
        deletable_flg:
            type: smallint
            nullable: false
            unsigned: false
            options:
                default: '1'
    oneToMany:
        BlockPositions:
            targetEntity: Eccube\Entity\BlockPosition
            cascade: ["persist", "remove"]
            mappedBy: Block
    manyToOne:
        DeviceType:
            targetEntity: Eccube\Entity\Master\DeviceType
            joinColumn:
                name: device_type_id
                referencedColumnName: id
    lifecycleCallbacks: {  }