Skip to content

Commit 380cdca

Browse files
authored
Align with ~/src/NServiceBus.Transport.SqlServer/Queuing/SqlServerConstants.cs (#1558)
1 parent 0528800 commit 380cdca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Scripts/Create-Databases.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ CREATE TABLE error (
3535
RowVersion bigint IDENTITY(1,1) NOT NULL
3636
);
3737

38-
CREATE CLUSTERED INDEX Index_RowVersion ON error
38+
CREATE NONCLUSTERED INDEX Index_RowVersion ON error
3939
(
4040
RowVersion
4141
)

src/Scripts/Reset-Database.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ CREATE TABLE error (
150150
RowVersion bigint IDENTITY(1,1) NOT NULL
151151
);
152152

153-
CREATE CLUSTERED INDEX Index_RowVersion ON error
153+
CREATE NONCLUSTERED INDEX Index_RowVersion ON error
154154
(
155155
RowVersion
156156
)

0 commit comments

Comments
 (0)