aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
diff options
context:
space:
mode:
authorGeir Nøklebye2015-07-27 14:25:28 +0200
committerOren Hurvitz2015-07-31 15:57:22 +0100
commit1de8c3570d0c8d18c181286334de81bf436dfbb4 (patch)
treef1223afc3ac3997039d5c3e8aa7e77648d92b5b8 /OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
parentFixed bad log message (diff)
downloadopensim-SC_OLD-1de8c3570d0c8d18c181286334de81bf436dfbb4.zip
opensim-SC_OLD-1de8c3570d0c8d18c181286334de81bf436dfbb4.tar.gz
opensim-SC_OLD-1de8c3570d0c8d18c181286334de81bf436dfbb4.tar.bz2
opensim-SC_OLD-1de8c3570d0c8d18c181286334de81bf436dfbb4.tar.xz
PGSQL migrations for IM_Store, UserProfiles, removal of casting exception for UserProfiles and adding double precision to PGSQL Manager
PGSQL migrations for IM_Store, UserProfiles, removal of casting exception for UserProfiles and adding double precision to PGSQL Manager. Fixes the Offline IM to Email toggle and prepares for fixing Offline IM. Signed-off-by: Oren Hurvitz <orenh@kitely.com>
Diffstat (limited to 'OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
index 70c67dd..f166976 100644
--- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
@@ -877,7 +877,7 @@ namespace OpenSim.Data.PGSQL
877 { 877 {
878 string query = string.Empty; 878 string query = string.Empty;
879 879
880 query += "SELECT imviaemail,visible,email FROM "; 880 query += "SELECT imviaemail::VARCHAR,visible::VARCHAR,email FROM ";
881 query += "usersettings WHERE "; 881 query += "usersettings WHERE ";
882 query += "useruuid = :Id"; 882 query += "useruuid = :Id";
883 883