fix(sqite): emit REAL for float columns in SQLite as the docs use that word a lot more

This commit is contained in:
Ryan Leckey 2020-07-04 02:54:41 -07:00
parent 921878ad77
commit 3c3356675e
2 changed files with 1 additions and 1 deletions

View file

@ -41,7 +41,7 @@ impl TypeInfo for SqliteTypeInfo {
match self.0 {
DataType::Null => "NULL",
DataType::Text => "TEXT",
DataType::Float => "FLOAT",
DataType::Float => "REAL",
DataType::Blob => "BLOB",
DataType::Int | DataType::Int64 => "INTEGER",
DataType::Numeric => "NUMERIC",