29 lines
729 B
C#
29 lines
729 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Modules.Library.Database.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class M002 : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "Url",
|
|
table: "MediaInfos",
|
|
newName: "ObjectId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "ObjectId",
|
|
table: "MediaInfos",
|
|
newName: "Url");
|
|
}
|
|
}
|
|
}
|