* Fixes NHibernate overflow exception when saving some objects (under at least PostgreSQL 8.3)
* Thanks Tommil!
This commit is contained in:
Justin Clarke Casey
2009-02-19 18:31:45 +00:00
parent fbeedc3272
commit 631e10f269
12 changed files with 37 additions and 28 deletions

View File

@@ -49,8 +49,8 @@ create table Prims (
ScaleY REAL null,
ScaleZ REAL null,
PCode TINYINT null,
PathBegin SMALLINT null,
PathEnd SMALLINT null,
PathBegin INT null,
PathEnd INT null,
PathScaleX TINYINT null,
PathScaleY TINYINT null,
PathShearX TINYINT null,
@@ -62,10 +62,10 @@ create table Prims (
PathTaperX TINYINT null,
PathTaperY TINYINT null,
PathTwist TINYINT null,
ProfileBegin SMALLINT null,
ProfileEnd SMALLINT null,
ProfileBegin INT null,
ProfileEnd INT null,
ProfileCurve TINYINT null,
ProfileHollow SMALLINT null,
ProfileHollow INT null,
Texture VARBINARY(8000) null,
ExtraParams VARBINARY(8000) null,
State TINYINT null,