mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Fixing Scale/Precision unit test
Needed as NHibernate has fixed the related bug https://nhibernate.jira.com/browse/NH-2979 --HG-- branch : 1.x
This commit is contained in:
@@ -229,7 +229,7 @@ namespace Orchard.Tests.DataMigration {
|
||||
|
||||
_schemaBuilder
|
||||
.CreateTable("Product", table => table
|
||||
.Column("Price", DbType.Decimal, column => column.WithPrecision(6).WithScale(9))
|
||||
.Column("Price", DbType.Decimal, column => column.WithPrecision(19).WithScale(9))
|
||||
);
|
||||
|
||||
_schemaBuilder
|
||||
|
||||
Reference in New Issue
Block a user