From 66e9ac1926e500f359f7ea5823cd240221fe5483 Mon Sep 17 00:00:00 2001 From: Valentijn Hol Date: Fri, 11 Feb 2022 18:33:47 +0100 Subject: [PATCH] Fix Sqlite BLOB type. --- src/sqlite/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sqlite/types.rs b/src/sqlite/types.rs index 8b325e95..1e80f517 100644 --- a/src/sqlite/types.rs +++ b/src/sqlite/types.rs @@ -105,7 +105,7 @@ impl Type { column_def.string(); } Self::Blob => { - column_def.custom(Alias::new("BLOB")); + column_def.binary(); } Self::Real | Self::Double | Self::DoublePrecision | Self::Float | Self::Numeric => { column_def.decimal();