Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 6c981b3

Browse files
committed
Fix PostgreSQL decimal test
1 parent afb5d63 commit 6c981b3

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/ServiceStack.OrmLite.PostgreSQL/Converters/PostrgreSqlFloatConverters.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,5 @@ public class PostrgreSqlDecimalConverter : DecimalConverter
2222
{
2323
public PostrgreSqlDecimalConverter()
2424
: base(38, 6) {}
25-
26-
public override string GetColumnDefinition(int? precision, int? scale)
27-
{
28-
return "NUMERIC({0},{1})".Fmt(
29-
precision.GetValueOrDefault(Precision),
30-
scale.GetValueOrDefault(Scale));
31-
}
3225
}
3326
}

0 commit comments

Comments
 (0)