aboutsummaryrefslogtreecommitdiff
path: root/sql/mssql.sql
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2018-04-24 14:44:52 +0200
committerChristophe Romain <christophe.romain@process-one.net>2018-04-24 14:44:52 +0200
commit61dee97738f6f6459a9b5cb26ae29c3e27db7dd9 (patch)
treee377e4d3495362949831809efdf7e76f806b8d84 /sql/mssql.sql
parentGet rid of useless memory/disk usage warnings (diff)
Pubsub creation/modification use varchar (#2397)
Diffstat (limited to '')
-rw-r--r--sql/mssql.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mssql.sql b/sql/mssql.sql
index 2dbe473c0..648dfb9ed 100644
--- a/sql/mssql.sql
+++ b/sql/mssql.sql
@@ -220,8 +220,8 @@ CREATE TABLE [dbo].[pubsub_item] (
[nodeid] [bigint] NULL,
[itemid] [varchar] (255) NOT NULL,
[publisher] [text] NOT NULL,
- [creation] [text] NOT NULL,
- [modification] [varchar] (255) NOT NULL,
+ [creation] [varchar] (32) NOT NULL,
+ [modification] [varchar] (32) NOT NULL,
[payload] [text] NOT NULL DEFAULT ''
) TEXTIMAGE_ON [PRIMARY];