You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var evolve = new EvolvePackage.Evolve(databaseConnection, message => this.Log.Info(message))
{
Locations = new[] { $"{rootPathToMigrations}\" },
IsEraseDisabled = true,
};
So, path is "{ProjectFolder}/migrations/"
and on Linux SQL scripts are not found => and it is correct behavior
BUT on Windows SQL scripts are perfectly found.
From my understanding, on Windows Scripts shall not be found either
The text was updated successfully, but these errors were encountered:
Migration scripts are deployed in "{ProjectFolder}\migrations*.sql;"
This task is invoked on startup:
${rootPathToMigrations} = this.hostingEnvironment.ContentRootPath
var evolve = new EvolvePackage.Evolve(databaseConnection, message => this.Log.Info(message))
{
Locations = new[] { $"{rootPathToMigrations}\" },
IsEraseDisabled = true,
};
So, path is "{ProjectFolder}/migrations/"
and on Linux SQL scripts are not found => and it is correct behavior
BUT on Windows SQL scripts are perfectly found.
From my understanding, on Windows Scripts shall not be found either
The text was updated successfully, but these errors were encountered: