mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
13 lines
488 B
C#
13 lines
488 B
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
namespace DiscImageChef.Server.Migrations
|
|||
|
|
{
|
|||
|
|
public partial class NameCountModel : Migration
|
|||
|
|
{
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder) =>
|
|||
|
|
migrationBuilder.Sql("ALTER TABLE Versions CHANGE `Value` `Name` LONGTEXT");
|
|||
|
|
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder) =>
|
|||
|
|
migrationBuilder.Sql("ALTER TABLE Versions CHANGE `Name` `Value` LONGTEXT");
|
|||
|
|
}
|
|||
|
|
}
|