## v0.11.8

This commit is contained in:
28810
2019-11-07 00:17:11 +08:00
parent 35a663f5ef
commit 13810c4422
15 changed files with 21 additions and 147 deletions

View File

@ -169,7 +169,7 @@ namespace FreeSql.Sqlite
{
column = string.Concat(a[1]),
sqlType = string.Concat(a[2]).ToUpper(),
is_nullable = string.Concat(a[3]) == "0",
is_nullable = string.Concat(a[5]) == "0" && string.Concat(a[3]) == "0",
is_identity
};
}, StringComparer.CurrentCultureIgnoreCase);