mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
Add a new experimental implementation of PGSQL FSAssets
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
This commit is contained in:
14
OpenSim/Data/PGSQL/Resources/FSAssetStore.migrations
Normal file
14
OpenSim/Data/PGSQL/Resources/FSAssetStore.migrations
Normal file
@@ -0,0 +1,14 @@
|
||||
:VERSION 1
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
CREATE TABLE fsassets (
|
||||
"id" uuid NOT NULL PRIMARY KEY,
|
||||
"type" integer NOT NULL,
|
||||
"hash" char(64) NOT NULL,
|
||||
"create_time" integer NOT NULL DEFAULT '0',
|
||||
"access_time" integer NOT NULL DEFAULT '0',
|
||||
"asset_flags" integer NOT NULL DEFAULT '0'
|
||||
);
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user