feat: 先搞一个dbmigrator凑合用

This commit is contained in:
2025-10-25 16:06:23 +08:00
parent ab8f120366
commit 283c30310a
17 changed files with 290 additions and 58 deletions

View File

@ -0,0 +1,8 @@
using System.Threading.Tasks;
namespace KonSoft.Shared.DbMigrator.Data;
public interface IDbSchemaMigrator
{
Task MigrateAsync();
}