mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 01:36:30 +02:00
chore: linting
This commit is contained in:
parent
eaa21c7150
commit
2832d57bda
60 changed files with 176 additions and 179 deletions
|
|
@ -26,10 +26,16 @@ def upgrade() -> None:
|
|||
connection.execute(text("COMMIT"))
|
||||
|
||||
# Add to documenttype enum (must be outside transaction)
|
||||
connection.execute(text("ALTER TYPE documenttype ADD VALUE IF NOT EXISTS 'CIRCLEBACK'"))
|
||||
connection.execute(
|
||||
text("ALTER TYPE documenttype ADD VALUE IF NOT EXISTS 'CIRCLEBACK'")
|
||||
)
|
||||
|
||||
# Add to searchsourceconnectortype enum
|
||||
connection.execute(text("ALTER TYPE searchsourceconnectortype ADD VALUE IF NOT EXISTS 'CIRCLEBACK_CONNECTOR'"))
|
||||
connection.execute(
|
||||
text(
|
||||
"ALTER TYPE searchsourceconnectortype ADD VALUE IF NOT EXISTS 'CIRCLEBACK_CONNECTOR'"
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue