Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorChristoph Scholz <christoph.scholz@gmail.com>2019-12-28 17:47:54 +0300
committerChristoph Scholz <christoph.scholz@gmail.com>2019-12-28 17:49:37 +0300
commit248cc2d013a6dbf0fb04e3522cb2edd3c1345f71 (patch)
treea656422e83d97e85ad9469423ecd5d11db244010 /sql
parentbbe404abcc4cf43bce33b90b0e57dc2b73d2f322 (diff)
change publisher from text to varchar for mssql
Diffstat (limited to 'sql')
-rw-r--r--sql/mssql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mssql.sql b/sql/mssql.sql
index 7c3713b76..0b8844307 100644
--- a/sql/mssql.sql
+++ b/sql/mssql.sql
@@ -209,7 +209,7 @@ WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW
CREATE TABLE [dbo].[pubsub_item] (
[nodeid] [bigint] NULL,
[itemid] [varchar] (255) NOT NULL,
- [publisher] [text] NOT NULL,
+ [publisher] [varchar] (250) NOT NULL,
[creation] [varchar] (32) NOT NULL,
[modification] [varchar] (32) NOT NULL,
[payload] [text] NOT NULL DEFAULT ''