blob: 1f47df1eeb02f80b21ae58e6dfd503e95db3ed4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Threading.Tasks;
using Timeline.Entities;
namespace Timeline.Services.Migration
{
public interface ICustomMigration
{
string GetName();
Task Execute(DatabaseContext database);
}
}
|