| 12345678910111213141516171819202122232425262728 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Infrastructure.Infrastructure.Persistence.Migrations
- {
- /// <inheritdoc />
- public partial class a4 : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.RenameColumn(
- name: "Thunmbnail",
- table: "Member",
- newName: "Thumb");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.RenameColumn(
- name: "Thumb",
- table: "Member",
- newName: "Thunmbnail");
- }
- }
- }
|