Skip to content

Commit

Permalink
Upgrade script issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
andreymaz committed May 5, 2013
1 parent 125bb9d commit 4842238
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions upgradescripts/2.80-the next version/upgrade.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1657,7 +1657,7 @@ GO
IF NOT EXISTS (SELECT 1 FROM sys.columns WHERE object_id=object_id('[ShoppingCartItem]') and NAME='StoreId')
BEGIN
ALTER TABLE [ShoppingCartItem]
ADD [StoreId] bit NULL
ADD [StoreId] int NULL
END
GO

Expand All @@ -1676,7 +1676,7 @@ GO
IF NOT EXISTS (SELECT 1 FROM sys.columns WHERE object_id=object_id('[Order]') and NAME='StoreId')
BEGIN
ALTER TABLE [Order]
ADD [StoreId] bit NULL
ADD [StoreId] int NULL
END
GO

Expand All @@ -1694,7 +1694,7 @@ GO
IF NOT EXISTS (SELECT 1 FROM sys.columns WHERE object_id=object_id('[ReturnRequest]') and NAME='StoreId')
BEGIN
ALTER TABLE [ReturnRequest]
ADD [StoreId] bit NULL
ADD [StoreId] int NULL
END
GO

Expand Down Expand Up @@ -1768,7 +1768,7 @@ GO
IF NOT EXISTS (SELECT 1 FROM sys.columns WHERE object_id=object_id('[BackInStockSubscription]') and NAME='StoreId')
BEGIN
ALTER TABLE [BackInStockSubscription]
ADD [StoreId] bit NULL
ADD [StoreId] int NULL
END
GO

Expand All @@ -1786,7 +1786,7 @@ GO
IF NOT EXISTS (SELECT 1 FROM sys.columns WHERE object_id=object_id('[Forums_PrivateMessage]') and NAME='StoreId')
BEGIN
ALTER TABLE [Forums_PrivateMessage]
ADD [StoreId] bit NULL
ADD [StoreId] int NULL
END
GO

Expand All @@ -1805,7 +1805,7 @@ GO
IF NOT EXISTS (SELECT 1 FROM sys.columns WHERE object_id=object_id('[GenericAttribute]') and NAME='StoreId')
BEGIN
ALTER TABLE [GenericAttribute]
ADD [StoreId] bit NULL
ADD [StoreId] int NULL
END
GO

Expand Down Expand Up @@ -1920,7 +1920,7 @@ GO
IF NOT EXISTS (SELECT 1 FROM sys.columns WHERE object_id=object_id('[Setting]') and NAME='StoreId')
BEGIN
ALTER TABLE [Setting]
ADD [StoreId] bit NULL
ADD [StoreId] int NULL
END
GO

Expand Down

0 comments on commit 4842238

Please sign in to comment.