From 9052c43319ab69f57b80e363d965780be625b0e2 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 2 Jul 2008 16:20:54 +0000 Subject: * 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 --- OpenSim/Data/MSSQL/Resources/CreateAssetsTable.sql | 1 - 1 file changed, 1 deletion(-) (limited to 'OpenSim/Data/MSSQL/Resources') diff --git a/OpenSim/Data/MSSQL/Resources/CreateAssetsTable.sql b/OpenSim/Data/MSSQL/Resources/CreateAssetsTable.sql index c7cb21a..4d94699 100644 --- a/OpenSim/Data/MSSQL/Resources/CreateAssetsTable.sql +++ b/OpenSim/Data/MSSQL/Resources/CreateAssetsTable.sql @@ -6,7 +6,6 @@ CREATE TABLE [assets] ( [name] [varchar](64) NOT NULL, [description] [varchar](64) NOT NULL, [assetType] [tinyint] NOT NULL, - [invType] [tinyint] NOT NULL, [local] [tinyint] NOT NULL, [temporary] [tinyint] NOT NULL, [data] [image] NOT NULL, -- cgit v1.1