2022-01-21 11:19:51 +02:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace NDB.Infrastructure.DatabaseMigration.Repositories
|
|
|
|
|
{
|
|
|
|
|
public interface IMigrationRepository
|
|
|
|
|
{
|
2022-01-22 01:54:19 +02:00
|
|
|
|
Task ExecuteSqlRaw(string sqlRaw);
|
2022-01-21 11:19:51 +02:00
|
|
|
|
}
|
|
|
|
|
}
|