Installing Vendr 3.0.3 somehow fails when trying to install all sql tables. The last successfully run migration is this:
Vendr.Persistence.SqlServer.Migrations.Implement.v010100.M20200429090000_AddDiscountCodeIsUnlimitedColumn.sql
The error I get is thrown when starting the website and looks like this:
The log says it has something to do with this file:
Vendr.Persistence.SqlServer.Migrations.Implement.v010102.M20200505090000_AddDiscountCodeDeletedTimestampColumn.sql
Vendr MigrateUp throwing error
Hi,
Installing Vendr 3.0.3 somehow fails when trying to install all sql tables. The last successfully run migration is this: Vendr.Persistence.SqlServer.Migrations.Implement.v010100.M20200429090000_AddDiscountCodeIsUnlimitedColumn.sql
The error I get is thrown when starting the website and looks like this:
The log says it has something to do with this file: Vendr.Persistence.SqlServer.Migrations.Implement.v010102.M20200505090000_AddDiscountCodeDeletedTimestampColumn.sql
EDIT: The Umbraco version is v10.3.1
Hey Rune,
What database are you using?
MS SQL server 2012. So it's an old lady.
Yea, so that's your problem. Our migrations use
IF EXISTS
clauses in our drop statements which are only supported by SQL Server 2016+Given v10 has a suggested minimum of SQL Server 2019 we though that would be a safe enough bet.
Are you able to upgrade the DB version?
I thought as much. We will find a way 👍
It's about time to start a new server. 😅
is working on a reply...