24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-10 21:47:01 +02:00

Fix TSQLlint warning about typo in mssql.new.sql

This commit is contained in:
Badlop 2023-02-14 17:31:26 +01:00
parent 0def333550
commit 66d58504d0

View File

@ -554,7 +554,7 @@ CREATE TABLE [dbo].[push_session] (
[xml] [varchar] (255) NOT NULL
);
CREATE UNIQUE NONCLUSTERED INDEX [push_session_susn] ON [push_session] (server_host, username, service, node))
CREATE UNIQUE NONCLUSTERED INDEX [push_session_susn] ON [push_session] (server_host, username, service, node)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON);
CREATE INDEX [push_session_sh_username_timestamp] ON [push_session] (server_host, username, timestamp)