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:
Sebastien Ros
2013-05-02 11:24:24 -07:00
parent 47122ed6c6
commit 87f011ff39

View File

@@ -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