mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/odbc/pg.sql: last table, state column cannot be NULL (EJAB-191).
* src/odbc/mysql.sql: likewise. * src/odbc/mssql.sql. likewise. SVN Revision: 732
This commit is contained in:
parent
90488e5f37
commit
090ba85424
@ -1,5 +1,9 @@
|
||||
2007-02-19 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/odbc/pg.sql: last table, state column cannot be NULL (EJAB-191).
|
||||
* src/odbc/mysql.sql: likewise.
|
||||
* src/odbc/mssql.sql. likewise.
|
||||
|
||||
* src/ejabberd_auth_ldap.erl: prevent anonymous bind on LDAP servers
|
||||
as ejabberd is providing other anonymous authentication mechanism
|
||||
(EJAB-190).
|
||||
|
@ -91,7 +91,7 @@ GO
|
||||
CREATE TABLE [dbo].[last] (
|
||||
[username] [varchar] (250) NOT NULL ,
|
||||
[seconds] [varchar] (50) NOT NULL ,
|
||||
[state] [varchar] (100) NULL ,
|
||||
[state] [varchar] (100) NOT NULL ,
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
|
@ -10,7 +10,7 @@ CREATE TABLE users (
|
||||
CREATE TABLE last (
|
||||
username varchar(250) PRIMARY KEY,
|
||||
seconds text NOT NULL,
|
||||
state text
|
||||
state text NOT NULl
|
||||
) CHARACTER SET utf8;
|
||||
|
||||
|
||||
|
@ -8,7 +8,7 @@ CREATE TABLE users (
|
||||
CREATE TABLE last (
|
||||
username text PRIMARY KEY,
|
||||
seconds text NOT NULL,
|
||||
state text
|
||||
state text NOT NULL
|
||||
);
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user