mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
* src/odbc/mssql.sql: Nickname cannot be null in rosterusers table (MSSQL)
* src/odbc/mysql.sql: Likewise * src/odbc/pg.sql: Likewise SVN Revision: 809
This commit is contained in:
parent
03fde5d50c
commit
3fe646c3cb
@ -1,3 +1,10 @@
|
||||
2007-07-09 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/odbc/mssql.sql: Nickname cannot be null in rosterusers table
|
||||
(MSSQL)
|
||||
* src/odbc/mysql.sql: Likewise
|
||||
* src/odbc/pg.sql: Likewise
|
||||
|
||||
2007-06-29 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/ejabberd_config.erl: Normalize hostnames in config file. If mixed
|
||||
|
@ -105,7 +105,7 @@ GO
|
||||
CREATE TABLE [dbo].[rosterusers] (
|
||||
[username] [varchar] (250) NOT NULL ,
|
||||
[jid] [varchar] (250) NOT NULL ,
|
||||
[nick] [varchar] (50) NULL ,
|
||||
[nick] [varchar] (50) NOT NULL ,
|
||||
[subscription] [char] (1) NOT NULL ,
|
||||
[ask] [char] (1) NOT NULL ,
|
||||
[askmessage] [varchar] (250) NOT NULL ,
|
||||
|
@ -17,7 +17,7 @@ CREATE TABLE last (
|
||||
CREATE TABLE rosterusers (
|
||||
username varchar(250) NOT NULL,
|
||||
jid varchar(250) NOT NULL,
|
||||
nick text,
|
||||
nick text NOT NULL,
|
||||
subscription character(1) NOT NULL,
|
||||
ask character(1) NOT NULL,
|
||||
askmessage text,
|
||||
|
@ -15,7 +15,7 @@ CREATE TABLE last (
|
||||
CREATE TABLE rosterusers (
|
||||
username text NOT NULL,
|
||||
jid text NOT NULL,
|
||||
nick text,
|
||||
nick text NOT NULL,
|
||||
subscription character(1) NOT NULL,
|
||||
ask character(1) NOT NULL,
|
||||
askmessage text NOT NULL,
|
||||
|
Loading…
Reference in New Issue
Block a user