mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 20:55:43 +08:00
* Fixes NHibernate overflow exception when saving some objects (under at least PostgreSQL 8.3) * Thanks Tommil!
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user