From fa4d97c2967117a83b318198d78fcc5824a25fc8 Mon Sep 17 00:00:00 2001 From: LennartSchmidtKern Date: Wed, 23 Jul 2025 09:15:47 +0200 Subject: [PATCH 01/11] model --- submodules/model | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/model b/submodules/model index e9ba0bfd..5e23e982 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit e9ba0bfdec459b2eeb14922eaf92907c8a84ffd8 +Subproject commit 5e23e9828ba9f57124cc13ddd41f92258b64f412 From 868cd1df4b9135d04e8f63061872575e26cecea5 Mon Sep 17 00:00:00 2001 From: Lina Date: Mon, 28 Jul 2025 17:23:10 +0200 Subject: [PATCH 02/11] Added datatype text list to the search helper --- service/search/search_helper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/service/search/search_helper.py b/service/search/search_helper.py index 44f7837b..a19c9480 100644 --- a/service/search/search_helper.py +++ b/service/search/search_helper.py @@ -280,6 +280,7 @@ def build_order_by_table_select( DataTypes.CATEGORY.value: "TEXT", DataTypes.TEXT.value: "TEXT", DataTypes.LLM_RESPONSE.value: "TEXT", + DataTypes.TEXT_LIST.value: "TEXT", } From d86606407f6e63e647ac133afb68554956c57885 Mon Sep 17 00:00:00 2001 From: Lina Date: Wed, 30 Jul 2025 13:46:54 +0200 Subject: [PATCH 03/11] Submodules fix --- submodules/model | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/model b/submodules/model index 5e23e982..54de49b1 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit 5e23e9828ba9f57124cc13ddd41f92258b64f412 +Subproject commit 54de49b1dcab32b9014b84ca479bb43c9d71c2ba From 8fb3ff2617e8cfb13e37bd88da46bd37897fa9fc Mon Sep 17 00:00:00 2001 From: LennartSchmidtKern Date: Wed, 30 Jul 2025 16:06:31 +0200 Subject: [PATCH 04/11] model --- .../versions/150ac8a20e59_change_schema.py | 63 +++++++++++++++++++ ...dd_integration_sharepoint_property_sync.py | 44 +++++++++++++ submodules/model | 2 +- 3 files changed, 108 insertions(+), 1 deletion(-) create mode 100644 alembic/versions/150ac8a20e59_change_schema.py create mode 100644 alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py diff --git a/alembic/versions/150ac8a20e59_change_schema.py b/alembic/versions/150ac8a20e59_change_schema.py new file mode 100644 index 00000000..82fa1b9d --- /dev/null +++ b/alembic/versions/150ac8a20e59_change_schema.py @@ -0,0 +1,63 @@ +"""change schema + +Revision ID: 150ac8a20e59 +Revises: 7334713b30a6 +Create Date: 2025-07-29 12:44:15.804586 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +# revision identifiers, used by Alembic. +revision = '150ac8a20e59' +down_revision = '7334713b30a6' +branch_labels = None +depends_on = None + + +def upgrade(): + # ### commands auto generated by Alembic - please adjust! ### + op.create_table('sharepoint_property_sync', + sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False), + sa.Column('created_by', postgresql.UUID(as_uuid=True), nullable=True), + sa.Column('created_at', sa.DateTime(), nullable=True), + sa.Column('updated_at', sa.DateTime(), nullable=True), + sa.Column('integration_id', postgresql.UUID(as_uuid=True), nullable=True), + sa.Column('config', sa.JSON(), nullable=True), + sa.Column('logs', sa.ARRAY(sa.String()), nullable=True), + sa.Column('state', sa.String(), nullable=True), + sa.ForeignKeyConstraint(['created_by'], ['user.id'], ondelete='SET NULL'), + sa.ForeignKeyConstraint(['integration_id'], ['cognition.integration.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id'), + schema='integration' + ) + op.create_index(op.f('ix_integration_sharepoint_property_sync_created_by'), 'sharepoint_property_sync', ['created_by'], unique=False, schema='integration') + op.create_index(op.f('ix_integration_sharepoint_property_sync_integration_id'), 'sharepoint_property_sync', ['integration_id'], unique=False, schema='integration') + op.drop_index('ix_sharepoint_property_sync_created_by', table_name='sharepoint_property_sync') + op.drop_index('ix_sharepoint_property_sync_integration_id', table_name='sharepoint_property_sync') + op.drop_table('sharepoint_property_sync') + # ### end Alembic commands ### + + +def downgrade(): + # ### commands auto generated by Alembic - please adjust! ### + op.create_table('sharepoint_property_sync', + sa.Column('id', postgresql.UUID(), autoincrement=False, nullable=False), + sa.Column('created_by', postgresql.UUID(), autoincrement=False, nullable=True), + sa.Column('created_at', postgresql.TIMESTAMP(), autoincrement=False, nullable=True), + sa.Column('updated_at', postgresql.TIMESTAMP(), autoincrement=False, nullable=True), + sa.Column('integration_id', postgresql.UUID(), autoincrement=False, nullable=True), + sa.Column('config', postgresql.JSON(astext_type=sa.Text()), autoincrement=False, nullable=True), + sa.Column('logs', postgresql.ARRAY(sa.VARCHAR()), autoincrement=False, nullable=True), + sa.Column('state', sa.VARCHAR(), autoincrement=False, nullable=True), + sa.ForeignKeyConstraint(['created_by'], ['user.id'], name='sharepoint_property_sync_created_by_fkey', ondelete='SET NULL'), + sa.ForeignKeyConstraint(['integration_id'], ['cognition.integration.id'], name='sharepoint_property_sync_integration_id_fkey', ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id', name='sharepoint_property_sync_pkey') + ) + op.create_index('ix_sharepoint_property_sync_integration_id', 'sharepoint_property_sync', ['integration_id'], unique=False) + op.create_index('ix_sharepoint_property_sync_created_by', 'sharepoint_property_sync', ['created_by'], unique=False) + op.drop_index(op.f('ix_integration_sharepoint_property_sync_integration_id'), table_name='sharepoint_property_sync', schema='integration') + op.drop_index(op.f('ix_integration_sharepoint_property_sync_created_by'), table_name='sharepoint_property_sync', schema='integration') + op.drop_table('sharepoint_property_sync', schema='integration') + # ### end Alembic commands ### diff --git a/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py b/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py new file mode 100644 index 00000000..44a95346 --- /dev/null +++ b/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py @@ -0,0 +1,44 @@ +"""add integration sharepoint property sync + +Revision ID: 7334713b30a6 +Revises: 6868ac66ea92 +Create Date: 2025-07-29 12:31:04.171629 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +# revision identifiers, used by Alembic. +revision = '7334713b30a6' +down_revision = '6868ac66ea92' +branch_labels = None +depends_on = None + + +def upgrade(): + # ### commands auto generated by Alembic - please adjust! ### + op.create_table('sharepoint_property_sync', + sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False), + sa.Column('created_by', postgresql.UUID(as_uuid=True), nullable=True), + sa.Column('created_at', sa.DateTime(), nullable=True), + sa.Column('updated_at', sa.DateTime(), nullable=True), + sa.Column('integration_id', postgresql.UUID(as_uuid=True), nullable=True), + sa.Column('config', sa.JSON(), nullable=True), + sa.Column('logs', sa.ARRAY(sa.String()), nullable=True), + sa.Column('state', sa.String(), nullable=True), + sa.ForeignKeyConstraint(['created_by'], ['user.id'], ondelete='SET NULL'), + sa.ForeignKeyConstraint(['integration_id'], ['cognition.integration.id'], ondelete='CASCADE'), + sa.PrimaryKeyConstraint('id') + ) + op.create_index(op.f('ix_sharepoint_property_sync_created_by'), 'sharepoint_property_sync', ['created_by'], unique=False) + op.create_index(op.f('ix_sharepoint_property_sync_integration_id'), 'sharepoint_property_sync', ['integration_id'], unique=False) + # ### end Alembic commands ### + + +def downgrade(): + # ### commands auto generated by Alembic - please adjust! ### + op.drop_index(op.f('ix_sharepoint_property_sync_integration_id'), table_name='sharepoint_property_sync') + op.drop_index(op.f('ix_sharepoint_property_sync_created_by'), table_name='sharepoint_property_sync') + op.drop_table('sharepoint_property_sync') + # ### end Alembic commands ### diff --git a/submodules/model b/submodules/model index 5e23e982..80dbc14a 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit 5e23e9828ba9f57124cc13ddd41f92258b64f412 +Subproject commit 80dbc14ac68c8b02fa78e76f9282754a89b7a9c9 From f50a8a6d3ef555485d8563100695aa58aa9ecef8 Mon Sep 17 00:00:00 2001 From: Lina Date: Thu, 31 Jul 2025 10:44:00 +0200 Subject: [PATCH 05/11] PR comments --- controller/attribute/manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controller/attribute/manager.py b/controller/attribute/manager.py index c9a2015a..3fb4ad3c 100644 --- a/controller/attribute/manager.py +++ b/controller/attribute/manager.py @@ -457,6 +457,8 @@ def calculate_user_attribute_sample_records( if ( attribute.get(project_id, attribute_id).data_type == DataTypes.EMBEDDING_LIST.value + or attribute.get(project_id, attribute_id).data_type + == DataTypes.TEXT_LIST.value ): # values are json serialized so they can be easily transferred to the frontend. # Since the return type is a list of strings, without json.dumps a str(xxxx) will be called From e602959aa8de56123b7f68fd3dfcfabb2ce0f5a4 Mon Sep 17 00:00:00 2001 From: Lina Date: Thu, 31 Jul 2025 10:45:36 +0200 Subject: [PATCH 06/11] Submodules update --- submodules/model | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/model b/submodules/model index 80dbc14a..9e32bfc8 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit 80dbc14ac68c8b02fa78e76f9282754a89b7a9c9 +Subproject commit 9e32bfc8c66f0691e6c141372894e9e362d4ef79 From dd5702e2c5a16e58fd0484637dcbbb3156e523e3 Mon Sep 17 00:00:00 2001 From: andhreljaKern Date: Wed, 3 Sep 2025 08:27:45 +0200 Subject: [PATCH 07/11] perf: update alembic revisions --- .../versions/150ac8a20e59_change_schema.py | 141 +++++++++++++----- ...dd_integration_sharepoint_property_sync.py | 58 ++++--- 2 files changed, 141 insertions(+), 58 deletions(-) diff --git a/alembic/versions/150ac8a20e59_change_schema.py b/alembic/versions/150ac8a20e59_change_schema.py index 82fa1b9d..22c9aeec 100644 --- a/alembic/versions/150ac8a20e59_change_schema.py +++ b/alembic/versions/150ac8a20e59_change_schema.py @@ -5,59 +5,122 @@ Create Date: 2025-07-29 12:44:15.804586 """ + from alembic import op import sqlalchemy as sa from sqlalchemy.dialects import postgresql # revision identifiers, used by Alembic. -revision = '150ac8a20e59' -down_revision = '7334713b30a6' +revision = "150ac8a20e59" +down_revision = "7334713b30a6" branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### - op.create_table('sharepoint_property_sync', - sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False), - sa.Column('created_by', postgresql.UUID(as_uuid=True), nullable=True), - sa.Column('created_at', sa.DateTime(), nullable=True), - sa.Column('updated_at', sa.DateTime(), nullable=True), - sa.Column('integration_id', postgresql.UUID(as_uuid=True), nullable=True), - sa.Column('config', sa.JSON(), nullable=True), - sa.Column('logs', sa.ARRAY(sa.String()), nullable=True), - sa.Column('state', sa.String(), nullable=True), - sa.ForeignKeyConstraint(['created_by'], ['user.id'], ondelete='SET NULL'), - sa.ForeignKeyConstraint(['integration_id'], ['cognition.integration.id'], ondelete='CASCADE'), - sa.PrimaryKeyConstraint('id'), - schema='integration' - ) - op.create_index(op.f('ix_integration_sharepoint_property_sync_created_by'), 'sharepoint_property_sync', ['created_by'], unique=False, schema='integration') - op.create_index(op.f('ix_integration_sharepoint_property_sync_integration_id'), 'sharepoint_property_sync', ['integration_id'], unique=False, schema='integration') - op.drop_index('ix_sharepoint_property_sync_created_by', table_name='sharepoint_property_sync') - op.drop_index('ix_sharepoint_property_sync_integration_id', table_name='sharepoint_property_sync') - op.drop_table('sharepoint_property_sync') + op.create_table( + "sharepoint_property_sync", + sa.Column("id", postgresql.UUID(as_uuid=True), nullable=False), + sa.Column("created_by", postgresql.UUID(as_uuid=True), nullable=True), + sa.Column("created_at", sa.DateTime(), nullable=True), + sa.Column("updated_at", sa.DateTime(), nullable=True), + sa.Column("integration_id", postgresql.UUID(as_uuid=True), nullable=True), + sa.Column("config", sa.JSON(), nullable=True), + sa.Column("logs", sa.ARRAY(sa.String()), nullable=True), + sa.Column("state", sa.String(), nullable=True), + sa.ForeignKeyConstraint(["created_by"], ["user.id"], ondelete="SET NULL"), + sa.ForeignKeyConstraint( + ["integration_id"], ["cognition.integration.id"], ondelete="CASCADE" + ), + sa.PrimaryKeyConstraint("id"), + schema="integration", + ) + op.create_index( + op.f("ix_integration_sharepoint_property_sync_created_by"), + "sharepoint_property_sync", + ["created_by"], + unique=False, + schema="integration", + ) + op.create_index( + op.f("ix_integration_sharepoint_property_sync_integration_id"), + "sharepoint_property_sync", + ["integration_id"], + unique=False, + schema="integration", + ) + op.drop_index( + "ix_sharepoint_property_sync_created_by", table_name="sharepoint_property_sync" + ) + op.drop_index( + "ix_sharepoint_property_sync_integration_id", + table_name="sharepoint_property_sync", + ) + op.drop_table("sharepoint_property_sync") # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### - op.create_table('sharepoint_property_sync', - sa.Column('id', postgresql.UUID(), autoincrement=False, nullable=False), - sa.Column('created_by', postgresql.UUID(), autoincrement=False, nullable=True), - sa.Column('created_at', postgresql.TIMESTAMP(), autoincrement=False, nullable=True), - sa.Column('updated_at', postgresql.TIMESTAMP(), autoincrement=False, nullable=True), - sa.Column('integration_id', postgresql.UUID(), autoincrement=False, nullable=True), - sa.Column('config', postgresql.JSON(astext_type=sa.Text()), autoincrement=False, nullable=True), - sa.Column('logs', postgresql.ARRAY(sa.VARCHAR()), autoincrement=False, nullable=True), - sa.Column('state', sa.VARCHAR(), autoincrement=False, nullable=True), - sa.ForeignKeyConstraint(['created_by'], ['user.id'], name='sharepoint_property_sync_created_by_fkey', ondelete='SET NULL'), - sa.ForeignKeyConstraint(['integration_id'], ['cognition.integration.id'], name='sharepoint_property_sync_integration_id_fkey', ondelete='CASCADE'), - sa.PrimaryKeyConstraint('id', name='sharepoint_property_sync_pkey') - ) - op.create_index('ix_sharepoint_property_sync_integration_id', 'sharepoint_property_sync', ['integration_id'], unique=False) - op.create_index('ix_sharepoint_property_sync_created_by', 'sharepoint_property_sync', ['created_by'], unique=False) - op.drop_index(op.f('ix_integration_sharepoint_property_sync_integration_id'), table_name='sharepoint_property_sync', schema='integration') - op.drop_index(op.f('ix_integration_sharepoint_property_sync_created_by'), table_name='sharepoint_property_sync', schema='integration') - op.drop_table('sharepoint_property_sync', schema='integration') + op.create_table( + "sharepoint_property_sync", + sa.Column("id", postgresql.UUID(), autoincrement=False, nullable=False), + sa.Column("created_by", postgresql.UUID(), autoincrement=False, nullable=True), + sa.Column( + "created_at", postgresql.TIMESTAMP(), autoincrement=False, nullable=True + ), + sa.Column( + "updated_at", postgresql.TIMESTAMP(), autoincrement=False, nullable=True + ), + sa.Column( + "integration_id", postgresql.UUID(), autoincrement=False, nullable=True + ), + sa.Column( + "config", + postgresql.JSON(astext_type=sa.Text()), + autoincrement=False, + nullable=True, + ), + sa.Column( + "logs", postgresql.ARRAY(sa.VARCHAR()), autoincrement=False, nullable=True + ), + sa.Column("state", sa.VARCHAR(), autoincrement=False, nullable=True), + sa.ForeignKeyConstraint( + ["created_by"], + ["user.id"], + name="sharepoint_property_sync_created_by_fkey", + ondelete="SET NULL", + ), + sa.ForeignKeyConstraint( + ["integration_id"], + ["cognition.integration.id"], + name="sharepoint_property_sync_integration_id_fkey", + ondelete="CASCADE", + ), + sa.PrimaryKeyConstraint("id", name="sharepoint_property_sync_pkey"), + ) + op.create_index( + "ix_sharepoint_property_sync_integration_id", + "sharepoint_property_sync", + ["integration_id"], + unique=False, + ) + op.create_index( + "ix_sharepoint_property_sync_created_by", + "sharepoint_property_sync", + ["created_by"], + unique=False, + ) + op.drop_index( + op.f("ix_integration_sharepoint_property_sync_integration_id"), + table_name="sharepoint_property_sync", + schema="integration", + ) + op.drop_index( + op.f("ix_integration_sharepoint_property_sync_created_by"), + table_name="sharepoint_property_sync", + schema="integration", + ) + op.drop_table("sharepoint_property_sync", schema="integration") # ### end Alembic commands ### diff --git a/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py b/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py index 44a95346..4c0d5dbd 100644 --- a/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py +++ b/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py @@ -5,40 +5,60 @@ Create Date: 2025-07-29 12:31:04.171629 """ + from alembic import op import sqlalchemy as sa from sqlalchemy.dialects import postgresql # revision identifiers, used by Alembic. -revision = '7334713b30a6' -down_revision = '6868ac66ea92' +revision = "7334713b30a6" +down_revision = "3e6633b3fa0a" branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### - op.create_table('sharepoint_property_sync', - sa.Column('id', postgresql.UUID(as_uuid=True), nullable=False), - sa.Column('created_by', postgresql.UUID(as_uuid=True), nullable=True), - sa.Column('created_at', sa.DateTime(), nullable=True), - sa.Column('updated_at', sa.DateTime(), nullable=True), - sa.Column('integration_id', postgresql.UUID(as_uuid=True), nullable=True), - sa.Column('config', sa.JSON(), nullable=True), - sa.Column('logs', sa.ARRAY(sa.String()), nullable=True), - sa.Column('state', sa.String(), nullable=True), - sa.ForeignKeyConstraint(['created_by'], ['user.id'], ondelete='SET NULL'), - sa.ForeignKeyConstraint(['integration_id'], ['cognition.integration.id'], ondelete='CASCADE'), - sa.PrimaryKeyConstraint('id') + op.create_table( + "sharepoint_property_sync", + sa.Column("id", postgresql.UUID(as_uuid=True), nullable=False), + sa.Column("created_by", postgresql.UUID(as_uuid=True), nullable=True), + sa.Column("created_at", sa.DateTime(), nullable=True), + sa.Column("updated_at", sa.DateTime(), nullable=True), + sa.Column("integration_id", postgresql.UUID(as_uuid=True), nullable=True), + sa.Column("config", sa.JSON(), nullable=True), + sa.Column("logs", sa.ARRAY(sa.String()), nullable=True), + sa.Column("state", sa.String(), nullable=True), + sa.ForeignKeyConstraint(["created_by"], ["user.id"], ondelete="SET NULL"), + sa.ForeignKeyConstraint( + ["integration_id"], ["cognition.integration.id"], ondelete="CASCADE" + ), + sa.PrimaryKeyConstraint("id"), + ) + op.create_index( + op.f("ix_sharepoint_property_sync_created_by"), + "sharepoint_property_sync", + ["created_by"], + unique=False, + ) + op.create_index( + op.f("ix_sharepoint_property_sync_integration_id"), + "sharepoint_property_sync", + ["integration_id"], + unique=False, ) - op.create_index(op.f('ix_sharepoint_property_sync_created_by'), 'sharepoint_property_sync', ['created_by'], unique=False) - op.create_index(op.f('ix_sharepoint_property_sync_integration_id'), 'sharepoint_property_sync', ['integration_id'], unique=False) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### - op.drop_index(op.f('ix_sharepoint_property_sync_integration_id'), table_name='sharepoint_property_sync') - op.drop_index(op.f('ix_sharepoint_property_sync_created_by'), table_name='sharepoint_property_sync') - op.drop_table('sharepoint_property_sync') + op.drop_index( + op.f("ix_sharepoint_property_sync_integration_id"), + table_name="sharepoint_property_sync", + ) + op.drop_index( + op.f("ix_sharepoint_property_sync_created_by"), + table_name="sharepoint_property_sync", + ) + op.drop_table("sharepoint_property_sync") # ### end Alembic commands ### From b608fe3fb44ba084a5d3e752956343f4d5f150f8 Mon Sep 17 00:00:00 2001 From: andhreljaKern Date: Wed, 3 Sep 2025 08:29:12 +0200 Subject: [PATCH 08/11] chore: update submodules --- submodules/model | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/model b/submodules/model index 41f85a25..0f4cf24e 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit 41f85a25de0ea90e5ff7c7bdcb6a86ee23ee73e1 +Subproject commit 0f4cf24e4f7818a65a20d4f675f22cd47b8ba198 From 2286af25a860984c41317d1149806d7fc426158f Mon Sep 17 00:00:00 2001 From: andhreljaKern Date: Wed, 3 Sep 2025 10:35:59 +0200 Subject: [PATCH 09/11] chore: update submodules --- submodules/model | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/model b/submodules/model index 0f4cf24e..1fc80874 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit 0f4cf24e4f7818a65a20d4f675f22cd47b8ba198 +Subproject commit 1fc8087410443f88ff8728b74510f1864367e828 From b1224035c4f21ae62b4b7d9042ca19f29815ccef Mon Sep 17 00:00:00 2001 From: andhreljaKern Date: Wed, 3 Sep 2025 10:36:07 +0200 Subject: [PATCH 10/11] fix: alembic down_revision --- .../7334713b30a6_add_integration_sharepoint_property_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py b/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py index 4c0d5dbd..3de02d80 100644 --- a/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py +++ b/alembic/versions/7334713b30a6_add_integration_sharepoint_property_sync.py @@ -12,7 +12,7 @@ # revision identifiers, used by Alembic. revision = "7334713b30a6" -down_revision = "3e6633b3fa0a" +down_revision = "312568866ac4" branch_labels = None depends_on = None From 1daf153396e446549c62324013e96a4e56beb4de Mon Sep 17 00:00:00 2001 From: andhreljaKern Date: Thu, 4 Sep 2025 15:34:18 +0200 Subject: [PATCH 11/11] chore: update submodules --- submodules/model | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/model b/submodules/model index 1fc80874..d5300f13 160000 --- a/submodules/model +++ b/submodules/model @@ -1 +1 @@ -Subproject commit 1fc8087410443f88ff8728b74510f1864367e828 +Subproject commit d5300f13c3b2cc6da16f36ffd6349795923b2c64