File tree 2 files changed +25
-27
lines changed
4.20-4.30 (under development)
2 files changed +25
-27
lines changed Original file line number Diff line number Diff line change @@ -3972,30 +3972,4 @@ IF EXISTS (SELECT 1 FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Shippi
3972
3972
BEGIN
3973
3973
EXEC sp_RENAME ' [dbo].[ShippingByWeightByTotal]' , ' ShippingByWeightByTotalRecord'
3974
3974
END
3975
- GO
3976
-
3977
- -- new setting
3978
- IF NOT EXISTS (SELECT 1 FROM [Setting] WHERE [name] = N ' cookiesettings.compareproductscookieexpires' )
3979
- BEGIN
3980
- INSERT [Setting] ([Name], [Value], [StoreId])
3981
- VALUES (N ' cookiesettings.compareproductscookieexpires' , N ' 240' , 0 )
3982
- END
3983
- GO
3984
-
3985
- -- new setting
3986
- IF NOT EXISTS (SELECT 1 FROM [Setting] WHERE [name] = N ' cookiesettings.recentlyviewedproductscookieexpires' )
3987
- BEGIN
3988
- INSERT [Setting] ([Name], [Value], [StoreId])
3989
- VALUES (N ' cookiesettings.recentlyviewedproductscookieexpires' , N ' 240' , 0 )
3990
- END
3991
- GO
3992
-
3993
-
3994
- -- new setting
3995
- IF NOT EXISTS (SELECT 1 FROM [Setting] WHERE [name] = N ' cookiesettings.customercookieexpires' )
3996
- BEGIN
3997
- INSERT [Setting] ([Name], [Value], [StoreId])
3998
- VALUES (N ' cookiesettings.customercookieexpires' , N ' 8760' , 0 )
3999
- END
4000
- GO
4001
-
3975
+ GO
Original file line number Diff line number Diff line change @@ -2753,4 +2753,28 @@ GO
2753
2753
-- drop the "LanguagePackImport" stored procedure
2754
2754
IF EXISTS (SELECT 1 FROM sys .objects WHERE OBJECT_ID = OBJECT_ID (N ' [LanguagePackImport]' ) AND OBJECTPROPERTY (OBJECT_ID , N ' IsProcedure' ) = 1 )
2755
2755
DROP PROCEDURE [LanguagePackImport];
2756
+ GO
2757
+
2758
+ -- new setting
2759
+ IF NOT EXISTS (SELECT 1 FROM [Setting] WHERE [name] = N ' cookiesettings.compareproductscookieexpires' )
2760
+ BEGIN
2761
+ INSERT [Setting] ([Name], [Value], [StoreId])
2762
+ VALUES (N ' cookiesettings.compareproductscookieexpires' , N ' 240' , 0 )
2763
+ END
2764
+ GO
2765
+
2766
+ -- new setting
2767
+ IF NOT EXISTS (SELECT 1 FROM [Setting] WHERE [name] = N ' cookiesettings.recentlyviewedproductscookieexpires' )
2768
+ BEGIN
2769
+ INSERT [Setting] ([Name], [Value], [StoreId])
2770
+ VALUES (N ' cookiesettings.recentlyviewedproductscookieexpires' , N ' 240' , 0 )
2771
+ END
2772
+ GO
2773
+
2774
+ -- new setting
2775
+ IF NOT EXISTS (SELECT 1 FROM [Setting] WHERE [name] = N ' cookiesettings.customercookieexpires' )
2776
+ BEGIN
2777
+ INSERT [Setting] ([Name], [Value], [StoreId])
2778
+ VALUES (N ' cookiesettings.customercookieexpires' , N ' 8760' , 0 )
2779
+ END
2756
2780
GO
You can’t perform that action at this time.
0 commit comments