20241110132939_altrUserRoles.cs 640 B

123456789101112131415161718192021222324252627
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace MTWorkHR.Infrastructure.Migrations
  4. {
  5. /// <inheritdoc />
  6. public partial class altrUserRoles : Migration
  7. {
  8. /// <inheritdoc />
  9. protected override void Up(MigrationBuilder migrationBuilder)
  10. {
  11. var sqlStm = @"Insert into AspNetUserRoles select Id, 'BS5B3B92-2311-48F8-9DEC-F9FAEF1F2110' from AspNetUsers where UserType=3";
  12. migrationBuilder.Sql(sqlStm);
  13. }
  14. /// <inheritdoc />
  15. protected override void Down(MigrationBuilder migrationBuilder)
  16. {
  17. }
  18. }
  19. }