| 12345678910111213141516171819202122 |
- 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.
- }
- }
- }
|