Multisite problem with repeater in type: global. Missing site_root_id in DB table

Hi,

I have OctoberCMS version 4.3.1 installation. I am using multisite and Tailor. I have problem use repeater in Tailor controller, type global.

This is code I have at very start before fields are defined.

handle: Pages\Settings
uuid: page-settings-main
type: global
name: Nastavenia stránok
formSize: adaptive
pagefinder: false
multisite: true

navigation:
    icon: ph ph-sliders-horizontal
    order: 1
    parent: settings
    category: Stránky

I have repeater in it. Repeater is causing error message when I add new item. Error message is :

SQLSTATE[42S22]: Column not found: 1054 Unknown column ‘site_root_id’ in ‘field list’ (Connection: mysql, Host: db.something.someservername.sk, Port: 3306, Database: database_name, SQL: update tailor_global_repeaters set site_root_id = 3, tailor_global_repeaters.updated_at = 2026-07-09 06:44:30 where id = 3)

It looks like it’s looking for site_root_id in tailor_global_repeaters table. But this is not there. I have checked different apps and it’s not there as well. These are on older version of OCMS and works correctly.

Definition for repeater field is

    favicons:
        label: Favicons
        commentAbove: 'Favicons do každej stránky'
        type: repeater
        prompt: 'Pridať položku ikony'
        displayMode: builder
        itemsExpanded: false
        useTabs: false
        titleFrom: typ
        showReorder: true
        showDuplicate: false
        form:
            fields:
                file:
                    label: Súbor
                    type: mediafinder
                    mode: image
                    maxItems: 1
                    span: row
                    spanClass: col-12 col-lg-6 col-xl-5 col-xxl-4
                _ruler_1:
                    type: ruler
                    span: row
                    spanClass: col-12 opacity-0
                rel:
                    label: REL
                    type: dropdown
                    options:
                        'icon': 'icon'
                        'shortcut icon': 'shortcut icon'
                        'apple-touch-icon': 'apple-touch-icon'
                        'apple-touch-icon-precomposed': 'apple-touch-icon-precomposed'
                        'mask-icon': 'mask-icon'
                        'msapplication-TileImage': 'msapplication-TileImage'
                    span: row
                    spanClass: col-12 col-lg-4 col-xl-3 col-xxl-2
                sizes:
                    label: sizes
                    type: text
                    comment: Prva velkos x a druha velkost y v pixeloh. Pridajte medzi ne x. Napr. 16x16
                    span: row
                    spanClass: col-12 col-lg-4 col-xl-3 col-xxl-2
                type:
                    label: type
                    type: text
                    span: row
                    spanClass: col-12 col-lg-4 col-xl-3 col-xxl-2
        span: row
        spanClass: col-12
        tab: Základné

I am not sure why this is happening. I have try tailor:migrate, but no help. I have try october:migrate and no help as well. I have checked github for OctoberCMS, section issues and I don’t see it there.

Is this problem with YAML settings or a bug ?

Thank you for help