YD_SmartSports.Api/VOL.Core/Migrations/20250515064944_20250515v1.cs

26 lines
639 B
C#
Raw Permalink Normal View History

2025-06-06 16:55:14 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250515v1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "Tiele",
table: "G_Article",
newName: "Title");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "Title",
table: "G_Article",
newName: "Tiele");
}
}
}