Przejdź do głównej treści

Ready_™ Developer TeamMniej niż 1 minuta

<?php

namespace ReadyApp\ExampleApp\Entity;

class Example extends \Bean {
    /**
     * @var $pkeyName  Name of primary key column
     */
    public string $pkeyName = 'primary_key_value';

    /**
     * @var $tableName Name of table abbreviated with the name of schema if different from 'public'
     */
    public string $tableName = 'custom.exapp_example';
}