chore: don't check for semgrep here

Signed-off-by: Akhil Narang <me@akhilnarang.dev>
This commit is contained in:
Akhil Narang 2023-10-19 18:20:16 +05:30
parent f9b9184223
commit fe549ecc49
No known key found for this signature in database
GPG key ID: 9DCC61E211BF645F

View file

@ -120,6 +120,7 @@ class MariaDBTable(DBTable):
if query_parts:
query_body = ", ".join(query_parts)
query = f"ALTER TABLE `{self.table_name}` {query_body}"
# nosemgrep
frappe.db.sql(query, ignore_implicit_commit=True)
except Exception as e: