@@ -72,8 +72,8 @@ CREATE OR ALTER PROCEDURE [dbo].[Organization_Create]
7272 @UsePhishingBlocker BIT = 0 ,
7373 @UseDisableSmAdsForUsers BIT = 0 ,
7474 @UseMyItems BIT = 0 ,
75- @UseInviteLinks BIT = 0 ,
76- @ExemptFromBillingAutomation BIT = 0
75+ @ExemptFromBillingAutomation BIT = 0 ,
76+ @UseInviteLinks BIT = 0
7777AS
7878BEGIN
7979 SET NOCOUNT ON
@@ -145,8 +145,8 @@ BEGIN
145145 [MaxStorageGbIncreased],
146146 [UseDisableSmAdsForUsers],
147147 [UseMyItems],
148- [UseInviteLinks ],
149- [ExemptFromBillingAutomation ]
148+ [ExemptFromBillingAutomation ],
149+ [UseInviteLinks ]
150150 )
151151 VALUES
152152 (
@@ -215,8 +215,8 @@ BEGIN
215215 @MaxStorageGb,
216216 @UseDisableSmAdsForUsers,
217217 @UseMyItems,
218- @UseInviteLinks ,
219- @ExemptFromBillingAutomation
218+ @ExemptFromBillingAutomation ,
219+ @UseInviteLinks
220220 );
221221END
222222GO
@@ -287,8 +287,8 @@ CREATE OR ALTER PROCEDURE [dbo].[Organization_Update]
287287 @UsePhishingBlocker BIT = 0 ,
288288 @UseDisableSmAdsForUsers BIT = 0 ,
289289 @UseMyItems BIT = 0 ,
290- @UseInviteLinks BIT = 0 ,
291- @ExemptFromBillingAutomation BIT = 0
290+ @ExemptFromBillingAutomation BIT = 0 ,
291+ @UseInviteLinks BIT = 0
292292AS
293293BEGIN
294294 SET NOCOUNT ON
@@ -360,8 +360,8 @@ BEGIN
360360 [MaxStorageGbIncreased] = @MaxStorageGb,
361361 [UseDisableSmAdsForUsers] = @UseDisableSmAdsForUsers,
362362 [UseMyItems] = @UseMyItems,
363- [UseInviteLinks ] = @UseInviteLinks ,
364- [ExemptFromBillingAutomation ] = @ExemptFromBillingAutomation
363+ [ExemptFromBillingAutomation ] = @ExemptFromBillingAutomation ,
364+ [UseInviteLinks ] = @UseInviteLinks
365365 WHERE
366366 [Id] = @Id;
367367END
@@ -476,8 +476,8 @@ SELECT
476476 [UsePhishingBlocker],
477477 [UseDisableSmAdsForUsers],
478478 [UseMyItems],
479- [UseInviteLinks ],
480- [ExemptFromBillingAutomation ]
479+ [ExemptFromBillingAutomation ],
480+ [UseInviteLinks ]
481481FROM
482482 [dbo].[Organization]
483483GO
0 commit comments