mirror of https://github.com/abpframework/abp.git
4 changed files with 20 additions and 4 deletions
@ -0,0 +1,14 @@ |
|||
using System; |
|||
using Volo.Abp.EventBus; |
|||
|
|||
namespace Volo.Abp.Data |
|||
{ |
|||
[Serializable] |
|||
[EventName("abp.data.apply_database_migrations")] |
|||
public class ApplyDatabaseMigrationsEto |
|||
{ |
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string DatabaseName { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue