diff options
author | John Hurliman | 2010-03-09 12:19:11 -0800 |
---|---|---|
committer | John Hurliman | 2010-03-09 12:19:11 -0800 |
commit | 4b8af2e1aa794ee51ae6b6751eeed3e8b2b47664 (patch) | |
tree | 468a94ac8fbd5e660312917bd95e24912f4f4b83 /OpenSim/Data/MSSQL/Resources/001_UserAccount.sql | |
parent | * Typo fixes (diff) | |
parent | MSSQL tweaks for latest ROBUST - friends handling fixed, GridUserData placeho... (diff) | |
download | opensim-SC_OLD-4b8af2e1aa794ee51ae6b6751eeed3e8b2b47664.zip opensim-SC_OLD-4b8af2e1aa794ee51ae6b6751eeed3e8b2b47664.tar.gz opensim-SC_OLD-4b8af2e1aa794ee51ae6b6751eeed3e8b2b47664.tar.bz2 opensim-SC_OLD-4b8af2e1aa794ee51ae6b6751eeed3e8b2b47664.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/001_UserAccount.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/001_UserAccount.sql b/OpenSim/Data/MSSQL/Resources/001_UserAccount.sql new file mode 100644 index 0000000..3dbf8a4 --- /dev/null +++ b/OpenSim/Data/MSSQL/Resources/001_UserAccount.sql | |||
@@ -0,0 +1,14 @@ | |||
1 | CREATE TABLE [UserAccounts] ( | ||
2 | [PrincipalID] uniqueidentifier NOT NULL, | ||
3 | [ScopeID] uniqueidentifier NOT NULL, | ||
4 | [FirstName] [varchar](64) NOT NULL, | ||
5 | [LastName] [varchar](64) NOT NULL, | ||
6 | [Email] [varchar](64) NULL, | ||
7 | [ServiceURLs] [text] NULL, | ||
8 | [Created] [int] default NULL, | ||
9 | |||
10 | PRIMARY KEY CLUSTERED | ||
11 | ( | ||
12 | [PrincipalID] ASC | ||
13 | )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | ||
14 | ) ON [PRIMARY] | ||