mirror of https://github.com/jellyfin/jellyfin.git
23 lines
591 B
C#
23 lines
591 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class ChannelIdGuid : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
// NOOP, Guids and strings are stored the same in SQLite.
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
// NOOP, Guids and strings are stored the same in SQLite.
|
|
}
|
|
}
|
|
}
|