diff options
author | Justin Clarke Casey | 2008-07-02 16:20:54 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-07-02 16:20:54 +0000 |
commit | 9052c43319ab69f57b80e363d965780be625b0e2 (patch) | |
tree | 3e17e9c0908be54ecb01ddff824d6c1a32020e88 /OpenSim/Framework/Communications/Cache | |
parent | Mantis#1647. Thank you kindly, Sempuki for a patch that: (diff) | |
download | opensim-SC_OLD-9052c43319ab69f57b80e363d965780be625b0e2.zip opensim-SC_OLD-9052c43319ab69f57b80e363d965780be625b0e2.tar.gz opensim-SC_OLD-9052c43319ab69f57b80e363d965780be625b0e2.tar.bz2 opensim-SC_OLD-9052c43319ab69f57b80e363d965780be625b0e2.tar.xz |
* Drop InvType from the assets table since it is no longer used
* Migration should be automatic on sqlite and mysql
* Migration is not automatic on mssql, you will need to drop the invType column manually
* Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
Diffstat (limited to 'OpenSim/Framework/Communications/Cache')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetCache.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index 95af28b..f160ce4 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs | |||
@@ -701,7 +701,6 @@ namespace OpenSim.Framework.Communications.Cache | |||
701 | Data = aBase.Data; | 701 | Data = aBase.Data; |
702 | FullID = aBase.FullID; | 702 | FullID = aBase.FullID; |
703 | Type = aBase.Type; | 703 | Type = aBase.Type; |
704 | InvType = aBase.InvType; | ||
705 | Name = aBase.Name; | 704 | Name = aBase.Name; |
706 | Description = aBase.Description; | 705 | Description = aBase.Description; |
707 | } | 706 | } |
@@ -718,7 +717,6 @@ namespace OpenSim.Framework.Communications.Cache | |||
718 | Data = aBase.Data; | 717 | Data = aBase.Data; |
719 | FullID = aBase.FullID; | 718 | FullID = aBase.FullID; |
720 | Type = aBase.Type; | 719 | Type = aBase.Type; |
721 | InvType = aBase.InvType; | ||
722 | Name = aBase.Name; | 720 | Name = aBase.Name; |
723 | Description = aBase.Description; | 721 | Description = aBase.Description; |
724 | } | 722 | } |