9 lines
137 B
C#
9 lines
137 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Kurs.Platform.Data;
|
|||
|
|
|
|||
|
|
public interface IPlatformDbSchemaMigrator
|
|||
|
|
{
|
|||
|
|
Task MigrateAsync();
|
|||
|
|
}
|