20260206143102_a4.cs 744 B

12345678910111213141516171819202122232425262728
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace Infrastructure.Infrastructure.Persistence.Migrations
  4. {
  5. /// <inheritdoc />
  6. public partial class a4 : Migration
  7. {
  8. /// <inheritdoc />
  9. protected override void Up(MigrationBuilder migrationBuilder)
  10. {
  11. migrationBuilder.RenameColumn(
  12. name: "Thunmbnail",
  13. table: "Member",
  14. newName: "Thumb");
  15. }
  16. /// <inheritdoc />
  17. protected override void Down(MigrationBuilder migrationBuilder)
  18. {
  19. migrationBuilder.RenameColumn(
  20. name: "Thumb",
  21. table: "Member",
  22. newName: "Thunmbnail");
  23. }
  24. }
  25. }