|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
|
|
// <auto-generated />
|
|
|
|
|
using System;
|
|
|
|
|
using Jellyfin.Server.Implementations;
|
|
|
|
@ -10,7 +11,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(JellyfinDb))]
|
|
|
|
|
[Migration("20210521032224_AddDevices")]
|
|
|
|
|
[Migration("20210602224232_AddDevices")]
|
|
|
|
|
partial class AddDevices
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
|
|
@ -18,7 +19,7 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
#pragma warning disable 612, 618
|
|
|
|
|
modelBuilder
|
|
|
|
|
.HasDefaultSchema("jellyfin")
|
|
|
|
|
.HasAnnotation("ProductVersion", "5.0.5");
|
|
|
|
|
.HasAnnotation("ProductVersion", "5.0.6");
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
|
|
|
|
|
{
|
|
|
|
@ -347,6 +348,9 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
b.Property<DateTime>("DateCreated")
|
|
|
|
|
.HasColumnType("TEXT");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTime>("DateLastActivity")
|
|
|
|
|
.HasColumnType("TEXT");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(64)
|