['name' => 'group_id', 'type' => 'int', 'internal' => 'id'], 'group_name' => ['name' => 'group_name', 'type' => 'string', 'internal' => 'name'], 'group_status' => ['name' => 'group_status', 'type' => 'int', 'internal' => 'status'], 'group_desc' => ['name' => 'group_desc', 'type' => 'string', 'internal' => 'description'], 'group_desc_raw' => ['name' => 'group_desc_raw', 'type' => 'string', 'internal' => 'descriptionRaw'], 'group_created' => ['name' => 'group_created', 'type' => 'DateTime', 'internal' => 'createdAt'], ]; /** * Primary table. * * @var string * @since 1.0.0 */ protected static $table = 'group'; /** * Primary field name. * * @var string * @since 1.0.0 */ protected static $primaryField = 'group_id'; /** * Created at column * * @var string * @since 1.0.0 */ protected static $createdAt = 'group_created'; }