From d88da028b1f69bd90940f1100b1a31f755ae7fd6 Mon Sep 17 00:00:00 2001 From: sayali Date: Fri, 30 Oct 2020 18:12:22 -0700 Subject: [PATCH] Replace binary with LargeBinary https://flask-appbuilder.readthedocs.io/en/latest/_modules/sqlalchemy/sql/sqltypes.html --- lemur/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemur/utils.py b/lemur/utils.py index 909d959a..d49a2feb 100644 --- a/lemur/utils.py +++ b/lemur/utils.py @@ -81,7 +81,7 @@ class Vault(types.TypeDecorator): """ # required by SQLAlchemy. defines the underlying column type - impl = types.Binary + impl = types.LargeBinary def process_bind_param(self, value, dialect): """