diff options
author | Cinder | 2015-03-03 20:42:22 -0700 |
---|---|---|
committer | BlueWall | 2015-03-03 22:50:12 -0500 |
commit | e5c0b68849d21e9f2d91b23586143e46becbce3b (patch) | |
tree | c07291a7b6ae508ef483fcf4c5efc6ec75c736de /OpenSim/Data/PGSQL | |
parent | As per http://wiki.secondlife.com/wiki/Limits Prim description should be 128 ... (diff) | |
download | opensim-SC-e5c0b68849d21e9f2d91b23586143e46becbce3b.zip opensim-SC-e5c0b68849d21e9f2d91b23586143e46becbce3b.tar.gz opensim-SC-e5c0b68849d21e9f2d91b23586143e46becbce3b.tar.bz2 opensim-SC-e5c0b68849d21e9f2d91b23586143e46becbce3b.tar.xz |
Follow up to last commit, fix field length
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
Diffstat (limited to 'OpenSim/Data/PGSQL')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/AssetStore.migrations | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations index b6db585..9919844 100644 --- a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations | |||
@@ -92,3 +92,7 @@ ALTER TABLE assets ADD "asset_flags" INTEGER NOT NULL DEFAULT 0; | |||
92 | :VERSION 7 | 92 | :VERSION 7 |
93 | 93 | ||
94 | alter table assets add "creatorid" varchar(36) not null default ''; | 94 | alter table assets add "creatorid" varchar(36) not null default ''; |
95 | |||
96 | :VERSION 8 | ||
97 | |||
98 | ALTER TABLE assets MODIFY description varchar(128); | ||