diff options
author | Sean Dague | 2009-01-26 15:42:21 +0000 |
---|---|---|
committer | Sean Dague | 2009-01-26 15:42:21 +0000 |
commit | f9b5329a74e20838c9e93dd49911b98e81c5fa31 (patch) | |
tree | 35126e1990400509953fe7c0f8d62df5a513518b /share/sql/mssql-CreateAssetsTable.sql | |
parent | add a definition for a parcel properties CAP (diff) | |
download | opensim-SC_OLD-f9b5329a74e20838c9e93dd49911b98e81c5fa31.zip opensim-SC_OLD-f9b5329a74e20838c9e93dd49911b98e81c5fa31.tar.gz opensim-SC_OLD-f9b5329a74e20838c9e93dd49911b98e81c5fa31.tar.bz2 opensim-SC_OLD-f9b5329a74e20838c9e93dd49911b98e81c5fa31.tar.xz |
in the spirit of cleanup, remove the old sql directory, as this stuff is
all done in the drivers now
Diffstat (limited to 'share/sql/mssql-CreateAssetsTable.sql')
-rw-r--r-- | share/sql/mssql-CreateAssetsTable.sql | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/share/sql/mssql-CreateAssetsTable.sql b/share/sql/mssql-CreateAssetsTable.sql deleted file mode 100644 index c7cb21a..0000000 --- a/share/sql/mssql-CreateAssetsTable.sql +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | SET ANSI_NULLS ON | ||
2 | SET QUOTED_IDENTIFIER ON | ||
3 | SET ANSI_PADDING ON | ||
4 | CREATE TABLE [assets] ( | ||
5 | [id] [varchar](36) NOT NULL, | ||
6 | [name] [varchar](64) NOT NULL, | ||
7 | [description] [varchar](64) NOT NULL, | ||
8 | [assetType] [tinyint] NOT NULL, | ||
9 | [invType] [tinyint] NOT NULL, | ||
10 | [local] [tinyint] NOT NULL, | ||
11 | [temporary] [tinyint] NOT NULL, | ||
12 | [data] [image] NOT NULL, | ||
13 | PRIMARY KEY CLUSTERED | ||
14 | ( | ||
15 | [id] ASC | ||
16 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | ||
17 | ) ON [PRIMARY] | ||
18 | |||
19 | SET ANSI_PADDING OFF | ||