Attempt to fix sqlexception in migrations.

This commit is contained in:
Cody Henthorne
2025-10-16 16:20:15 -04:00
parent b1d7da5320
commit ded8c99ce2
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ object V293_LastResortKeyTupleTableMigration : SignalDatabaseMigration {
public_key BLOB NOT NULL,
UNIQUE(kyber_prekey_id, signed_key_id, public_key)
)
""".trimIndent()
"""
)
}
}

View File

@@ -25,7 +25,7 @@ object V294_RemoveLastResortKeyTupleColumnConstraintMigration : SignalDatabaseMi
public_key BLOB NOT NULL,
UNIQUE(kyber_prekey_id, signed_key_id, public_key)
)
""".trimIndent()
"""
)
}
}

View File

@@ -23,7 +23,7 @@ object V295_AddLastRestoreKeyTypeTableIfMissingMigration : SignalDatabaseMigrati
public_key BLOB NOT NULL,
UNIQUE(kyber_prekey_id, signed_key_id, public_key)
)
""".trimIndent()
"""
)
}
}