diff --git a/.github/workflows/qgis.yaml b/.github/workflows/qgis.yaml index ee3094a097..302ac6bb6c 100644 --- a/.github/workflows/qgis.yaml +++ b/.github/workflows/qgis.yaml @@ -40,7 +40,7 @@ jobs: main: runs-on: ubuntu-22.04 name: QGIS build - timeout-minutes: 10 + timeout-minutes: 15 needs: common strategy: diff --git a/commons/c2cgeoportal_commons/alembic/main/a4558f032d7d_add_support_of_cog_layers.py b/commons/c2cgeoportal_commons/alembic/main/a4558f032d7d_add_support_of_cog_layers.py index e61a74a098..b34cb807fa 100644 --- a/commons/c2cgeoportal_commons/alembic/main/a4558f032d7d_add_support_of_cog_layers.py +++ b/commons/c2cgeoportal_commons/alembic/main/a4558f032d7d_add_support_of_cog_layers.py @@ -55,7 +55,7 @@ def upgrade() -> None: sa.Column("url", sa.Unicode(), nullable=False), sa.ForeignKeyConstraint( ["id"], - ["main.layer.id"], + [f"{schema}.layer.id"], ), sa.PrimaryKeyConstraint("id"), schema=schema,