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
migration scripts are diposed in "{ProjectFolder}\db\migrations*.sql;"
This task is invoked on statrup:
public abstract class DbMigrationTask : IStartupTask
{
protected readonly string _connectionString;
private readonly string _databaseSchema;
private readonly ILogger<DbMigrationTask> _logger;
protected DbMigrationTask(string connectionString, ILogger<DbMigrationTask> logger)
{
_connectionString = connectionString;
_logger = logger;
}
protected DbMigrationTask(string connectionString, ILogger<DbMigrationTask> logger, string databaseSchema)
{
_connectionString = connectionString;
_databaseSchema = databaseSchema;
_logger = logger;
}
public virtual Task ExecuteAsync()
{
try {
using (var connection = new NpgsqlConnection(_connectionString)) {
var evolve = new Evolve.Evolve(connection, msg => _logger.LogInformation(msg)) {
IsEraseDisabled = true,
CommandTimeout = 600
};
//HERE ADD FOLDERS
evolve.Locations = new[] {
Path.Combine("db", "migrations")
};
evolve.Migrate();
}
}
catch (Exception e)
{
switch (e) {
case NpgsqlException npgsqlException
when npgsqlException.Message.StartsWith("The connection pool has been exhausted") ||
npgsqlException.Message.StartsWith("Exception while reading from stream"):
case PostgresException postgresException
when postgresException.SqlState == "57P03":
_logger.LogCritical("Database migration failed.", e);
throw;
default:
break;
}
}
return Task.CompletedTask;
}
}
So, path is "db/migrations/"
and on Linux SQL scripts are not found => and it is correct behavior
BUT on Windows SQL scripts are perfectly found.
From my undestanding, on Windows Scripts shall not be found either
The text was updated successfully, but these errors were encountered:
migration scripts are diposed in "{ProjectFolder}\db\migrations*.sql;"
This task is invoked on statrup:
So, path is "db/migrations/"
and on Linux SQL scripts are not found => and it is correct behavior
BUT on Windows SQL scripts are perfectly found.
From my undestanding, on Windows Scripts shall not be found either
The text was updated successfully, but these errors were encountered: