fix: resolved be failing

This commit is contained in:
=
2025-02-04 00:21:16 +05:30
parent 6671c42d0f
commit 8204e970a8

View File

@@ -296,7 +296,6 @@ const reencryptLdapConfig = async (knex: Knex) => {
await knex.schema.alterTable(TableName.LdapConfig, (t) => {
if (!hasEncryptedLdapBindPassColumn) t.binary("encryptedLdapBindPass").notNullable().alter();
if (!hasEncryptedLdapBindDNColum) t.binary("encryptedLdapBindDN").notNullable().alter();
if (!hasEncryptedCertificateColumn) t.binary("encryptedLdapCaCertificate");
});
}
};