Skip to content

Commit d9b8795

Browse files
Fix missing ) .... omg
1 parent ee88d80 commit d9b8795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SQLite.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2786,7 +2786,7 @@ public static string SqlDecl (TableMapping.Column p, bool storeDateTimeAsTicks,
27862786
public static string SqlType (TableMapping.Column p, bool storeDateTimeAsTicks, bool storeTimeSpanAsTicks)
27872787
{
27882788
var clrType = p.ColumnType;
2789-
if (clrType == typeof (Boolean) || clrType == typeof (Byte) || clrType == typeof (UInt16) || clrType == typeof (SByte) || clrType == typeof (Int16) || clrType == typeof (Int32) || clrType == typeof (UInt32) || clrType == typeof (Int64) || clrType == typeof (UInt64) {
2789+
if (clrType == typeof (Boolean) || clrType == typeof (Byte) || clrType == typeof (UInt16) || clrType == typeof (SByte) || clrType == typeof (Int16) || clrType == typeof (Int32) || clrType == typeof (UInt32) || clrType == typeof (Int64) || clrType == typeof (UInt64)) {
27902790
return "integer";
27912791
}
27922792
else if (clrType == typeof (Single) || clrType == typeof (Double) || clrType == typeof (Decimal)) {

0 commit comments

Comments
 (0)