mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
Fernando Oliveira's Postgress SQL Server Data Connector as a single commit.
* Added PostGreSQL support * Added MySQL/MySQLXGroupData.cs * PostgreSQL data access implementation * PostgreSQL dll binarie and RegionStore.migrations * Migrations Scripts from MSSQL to POSTGRES * Postgres SQL Type fixes * Postgres SQL Connection string * Data type issues * more fixes * tests and +tests * UUID x string - FIGHT! * Fixed PG types to internal csharp types * More data type fix (PostgreSQL fields are case sensitive) :( * more field case sensitive fixes * changed the migration files to be case sensitive for fields. * fixed fields case * finished converting, now search for hidden bugs. * some more fixes * bool type fixed * more case fixes; * creatorID case fixed * case fields fixed * fixed default now() for TMStamp fields with don't allow nulls. * fix case sensitve for Region name and Estate name * fixed case for names for search * fix class name Error * Bug fixed on select and migrations * Un-Reverting my change due to Postgres issue with the ILIKE function * Fixed some issued for Diva Distro * Fixes for integration with Diva Distro * Added System.Core to prebuild.xml for PG project * Configured to make DIff for Push to OpenSim Project * Diffs only to PostgreSQL mods.
This commit is contained in:
committed by
fernando
parent
2eade55471
commit
ff8a768258
94
OpenSim/Data/PGSQL/Resources/AssetStore.migrations
Normal file
94
OpenSim/Data/PGSQL/Resources/AssetStore.migrations
Normal file
@@ -0,0 +1,94 @@
|
||||
:VERSION 1
|
||||
|
||||
CREATE TABLE assets (
|
||||
"id" varchar(36) NOT NULL PRIMARY KEY,
|
||||
"name" varchar(64) NOT NULL,
|
||||
"description" varchar(64) NOT NULL,
|
||||
"assetType" smallint NOT NULL,
|
||||
"local" smallint NOT NULL,
|
||||
"temporary" smallint NOT NULL,
|
||||
"data" bytea NOT NULL
|
||||
) ;
|
||||
|
||||
:VERSION 2
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
CREATE TABLE Tmp_assets
|
||||
(
|
||||
"id" varchar(36) NOT NULL,
|
||||
"name" varchar(64) NOT NULL,
|
||||
"description" varchar(64) NOT NULL,
|
||||
"assetType" smallint NOT NULL,
|
||||
"local" boolean NOT NULL,
|
||||
"temporary" boolean NOT NULL,
|
||||
"data" bytea NOT NULL
|
||||
) ;
|
||||
|
||||
INSERT INTO Tmp_assets ("id", "name", "description", "assetType", "local", "temporary", "data")
|
||||
SELECT "id", "name", "description", "assetType", case when "local" = 1 then true else false end, case when "temporary" = 1 then true else false end, "data"
|
||||
FROM assets ;
|
||||
|
||||
DROP TABLE assets;
|
||||
|
||||
Alter table Tmp_assets
|
||||
rename to assets;
|
||||
|
||||
ALTER TABLE assets ADD PRIMARY KEY ("id");
|
||||
|
||||
COMMIT;
|
||||
|
||||
|
||||
:VERSION 3
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
ALTER TABLE assets add "create_time" integer default 0;
|
||||
ALTER TABLE assets add "access_time" integer default 0;
|
||||
|
||||
COMMIT;
|
||||
|
||||
|
||||
:VERSION 4
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
CREATE TABLE Tmp_assets
|
||||
(
|
||||
"id" uuid NOT NULL,
|
||||
"name" varchar(64) NOT NULL,
|
||||
"description" varchar(64) NOT NULL,
|
||||
"assetType" smallint NOT NULL,
|
||||
"local" boolean NOT NULL,
|
||||
"temporary" boolean NOT NULL,
|
||||
"data" bytea NOT NULL,
|
||||
"create_time" int NULL,
|
||||
"access_time" int NULL
|
||||
) ;
|
||||
|
||||
|
||||
INSERT INTO Tmp_assets ("id", "name", "description", "assetType", "local", "temporary", "data", "create_time", "access_time")
|
||||
SELECT cast("id" as uuid), "name", "description", "assetType", "local", "temporary", "data", "create_time", "access_time"
|
||||
FROM assets ;
|
||||
|
||||
DROP TABLE assets;
|
||||
|
||||
Alter table Tmp_assets
|
||||
rename to assets;
|
||||
|
||||
ALTER TABLE assets ADD PRIMARY KEY ("id");
|
||||
|
||||
COMMIT;
|
||||
|
||||
|
||||
:VERSION 5
|
||||
|
||||
DELETE FROM assets WHERE "id" = 'dc4b9f0b-d008-45c6-96a4-01dd947ac621';
|
||||
|
||||
:VERSION 6
|
||||
|
||||
ALTER TABLE assets ADD "asset_flags" INTEGER NOT NULL DEFAULT 0;
|
||||
|
||||
:VERSION 7
|
||||
|
||||
alter table assets add "creatorid" varchar(36) not null default '';
|
||||
Reference in New Issue
Block a user