I get the following Warning on installation:
SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException: Invalid column name 'SpecialInstructions'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) Create PROCEDURE dbo.Smith_UpdateStoreOrders @OrderID int, @CustomerID int, @OrderDate datetime, @PayHistID int, @ShippingTotal money, @TaxTotal money, @HandlingCharge money, @ShipFirstName nvarchar(50), @ShipLastName nvarchar(50), @ShipAddress1 varchar(200), @ShipAddress2 varchar(200), @ShipCity varchar(60), @ShipState varchar(60), @ShipZipcode varchar(25), @ShipCountry varchar(50), @Status varchar(20), @ShipMethod nvarchar(50), @AffiliateId varchar(20) , @CouponId int , @Discount money , @MemberDiscount Money, @MemberRole nvarchar(50), @TrackingNumber nvarchar(50), @SpecialInstructions nvarchar(500) AS UPDATE Smith_StoreOrders SET [CustomerID] = @CustomerID, [OrderDate] = @OrderDate, [PayHistID] = @PayHistID, [ShippingTotal]=@ShippingTotal, [TaxTotal] = @TaxTotal , [HandlingCharge]=@HandlingCharge, ShipFirstName =@ShipFirstName, ShipLastName =@ShipLastName, [ShipAddress1]=@ShipAddress1, [ShipAddress2]=@ShipAddress2, [ShipCity]=@ShipCity, [ShipState]=@ShipState, [ShipZipcode]=@ShipZipcode, [ShipCountry] = @ShipCountry, [Status]=@Status, [ShipMethod]=@ShipMethod, [AffiliateId] = @AffiliateId , [CouponId] = @CouponId , [Discount] = @Discount , [MemberDiscount] = @MemberDiscount , [MemberRole] = @MemberRole, [TrackingNumber] = @TrackingNumber, [SpecialInstructions] = @SpecialInstructions WHERE [OrderID] = @OrderID