diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-28 19:27:52 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-28 19:27:52 +0000 |
commit | cf92958f3c225287eb0d1187f3e8c436ddd0f55f (patch) | |
tree | d9e20c6bfabd0783f6f6d72442a4c66b83b058f1 /database | |
parent | fa37f47d0b21dff0261d76bc8607606bac1f7558 (diff) | |
download | brdo-cf92958f3c225287eb0d1187f3e8c436ddd0f55f.tar.gz brdo-cf92958f3c225287eb0d1187f3e8c436ddd0f55f.tar.bz2 |
- Bugfix: fixed usernames being shown in the "Who is online" block after
you logged out. Patch by Jeremy.
- Bugfix: fixed the authmap table in the MSSQL scheme. Patch by Moshe.
- Bugfix: properly themes some error messages in the user module. Patch
by Moshe.
Diffstat (limited to 'database')
-rw-r--r-- | database/database.mssql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database/database.mssql b/database/database.mssql index d2ca4730e..027ca668c 100644 --- a/database/database.mssql +++ b/database/database.mssql @@ -20,7 +20,7 @@ CREATE TABLE [dbo].[accesslog] ( GO CREATE TABLE [dbo].[authmap] ( - [aid] [numeric](10, 0) NULL , + [aid] [numeric](10, 0) IDENTITY NULL , [uid] [int] NOT NULL , [authname] [varchar] (128) NOT NULL , [module] [varchar] (128) NOT NULL |