mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-04-08 20:08:36 +02:00
proper schema isolation
This commit is contained in:
parent
6e78f2094b
commit
4855a80f86
@ -10,7 +10,15 @@ import sqlalchemy as sa
|
||||
from sqlalchemy.sql import table
|
||||
from sqlalchemy.dialects import postgresql
|
||||
import json
|
||||
from alembic.versions.utils import encrypt_string
|
||||
import os
|
||||
|
||||
print('zzzz')
|
||||
print("Current directory contents:")
|
||||
for item in os.listdir():
|
||||
print(f"- {item}")
|
||||
|
||||
|
||||
from alembic_utils import encrypt_string
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "0a98909f2757"
|
||||
|
@ -8,7 +8,7 @@ Create Date: 2023-11-11 20:51:24.228999
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
from alembic.versions.utils import DocumentSource
|
||||
from alembic_utils import DocumentSource
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "15326fcec57e"
|
||||
|
@ -9,7 +9,7 @@ Create Date: 2024-08-25 12:39:51.731632
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects import postgresql
|
||||
from alembic.versions.utils import NUM_POSTPROCESSED_RESULTS
|
||||
from alembic_utils import NUM_POSTPROCESSED_RESULTS
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "1f60f60c3401"
|
||||
|
@ -7,7 +7,7 @@ Create Date: 2024-03-22 21:34:27.629444
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from alembic.versions.utils import IndexModelStatus, RecencyBiasSetting, SearchType
|
||||
from alembic_utils import IndexModelStatus, RecencyBiasSetting, SearchType
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
|
@ -7,7 +7,7 @@ Create Date: 2024-03-21 12:05:23.956734
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from alembic.versions.utils import DocumentSource
|
||||
from alembic_utils import DocumentSource
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "91fd3b470d1a"
|
||||
|
@ -10,7 +10,7 @@ from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects import postgresql
|
||||
from sqlalchemy.dialects.postgresql import ENUM
|
||||
from alembic.versions.utils import DocumentSource
|
||||
from alembic_utils import DocumentSource
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "b156fa702355"
|
||||
|
@ -8,7 +8,7 @@ Create Date: 2024-01-25 17:12:31.813160
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy import table, column, String, Integer, Boolean
|
||||
from alembic.versions.utils import IndexModelStatus
|
||||
from alembic_utils import IndexModelStatus
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "dbaa756c2ccf"
|
||||
|
@ -8,7 +8,7 @@ Create Date: 2024-03-14 18:06:08.523106
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
from alembic.versions.utils import DocumentSource
|
||||
from alembic_utils import DocumentSource
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "e50154680a5c"
|
||||
|
Loading…
x
Reference in New Issue
Block a user