Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace Diligent.WebAPI.Data.Migrations
  4. {
  5. public partial class UserUpdate : Migration
  6. {
  7. protected override void Up(MigrationBuilder migrationBuilder)
  8. {
  9. migrationBuilder.AddColumn<string>(
  10. name: "LinkedIn",
  11. table: "AspNetUsers",
  12. type: "nvarchar(max)",
  13. nullable: true);
  14. migrationBuilder.AddColumn<string>(
  15. name: "Position",
  16. table: "AspNetUsers",
  17. type: "nvarchar(max)",
  18. nullable: true);
  19. }
  20. protected override void Down(MigrationBuilder migrationBuilder)
  21. {
  22. migrationBuilder.DropColumn(
  23. name: "LinkedIn",
  24. table: "AspNetUsers");
  25. migrationBuilder.DropColumn(
  26. name: "Position",
  27. table: "AspNetUsers");
  28. }
  29. }
  30. }