< Summary - Jellyfin

Line coverage
94%
Covered lines: 73
Uncovered lines: 4
Coverable lines: 77
Total lines: 118
Line coverage: 94.8%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
File 1: Up(...)100%11100%
File 1: Down(...)100%210%
File 2: BuildTargetModel(...)100%11100%

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20200514181226_AddActivityLog.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2#pragma warning disable SA1601
 3
 4using System;
 5using Microsoft.EntityFrameworkCore.Migrations;
 6
 7namespace Jellyfin.Server.Implementations.Migrations
 8{
 9    public partial class AddActivityLog : Migration
 10    {
 11        protected override void Up(MigrationBuilder migrationBuilder)
 12        {
 2113            migrationBuilder.EnsureSchema(
 2114                name: "jellyfin");
 15
 2116            migrationBuilder.CreateTable(
 2117                name: "ActivityLogs",
 2118                schema: "jellyfin",
 2119                columns: table => new
 2120                {
 2121                    Id = table.Column<int>(nullable: false)
 2122                        .Annotation("Sqlite:Autoincrement", true),
 2123                    Name = table.Column<string>(maxLength: 512, nullable: false),
 2124                    Overview = table.Column<string>(maxLength: 512, nullable: true),
 2125                    ShortOverview = table.Column<string>(maxLength: 512, nullable: true),
 2126                    Type = table.Column<string>(maxLength: 256, nullable: false),
 2127                    UserId = table.Column<Guid>(nullable: false),
 2128                    ItemId = table.Column<string>(maxLength: 256, nullable: true),
 2129                    DateCreated = table.Column<DateTime>(nullable: false),
 2130                    LogSeverity = table.Column<int>(nullable: false),
 2131                    RowVersion = table.Column<uint>(nullable: false)
 2132                },
 2133                constraints: table =>
 2134                {
 2135                    table.PrimaryKey("PK_ActivityLogs", x => x.Id);
 2136                });
 2137        }
 38
 39        protected override void Down(MigrationBuilder migrationBuilder)
 40        {
 041            migrationBuilder.DropTable(
 042                name: "ActivityLogs",
 043                schema: "jellyfin");
 044        }
 45    }
 46}

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20200514181226_AddActivityLog.Designer.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3// <auto-generated />
 4using System;
 5using Jellyfin.Database.Implementations;
 6using Microsoft.EntityFrameworkCore;
 7using Microsoft.EntityFrameworkCore.Infrastructure;
 8using Microsoft.EntityFrameworkCore.Migrations;
 9using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
 10
 11namespace Jellyfin.Server.Implementations.Migrations
 12{
 13    [DbContext(typeof(JellyfinDbContext))]
 14    [Migration("20200514181226_AddActivityLog")]
 15    partial class AddActivityLog
 16    {
 17        protected override void BuildTargetModel(ModelBuilder modelBuilder)
 18        {
 19#pragma warning disable 612, 618
 2120            modelBuilder
 2121                .HasDefaultSchema("jellyfin")
 2122                .HasAnnotation("ProductVersion", "3.1.3");
 23
 2124            modelBuilder.Entity("Jellyfin.Data.Entities.ActivityLog", b =>
 2125                {
 2126                    b.Property<int>("Id")
 2127                        .ValueGeneratedOnAdd()
 2128                        .HasColumnType("INTEGER");
 2129
 2130                    b.Property<DateTime>("DateCreated")
 2131                        .HasColumnType("TEXT");
 2132
 2133                    b.Property<string>("ItemId")
 2134                        .HasColumnType("TEXT")
 2135                        .HasMaxLength(256);
 2136
 2137                    b.Property<int>("LogSeverity")
 2138                        .HasColumnType("INTEGER");
 2139
 2140                    b.Property<string>("Name")
 2141                        .IsRequired()
 2142                        .HasColumnType("TEXT")
 2143                        .HasMaxLength(512);
 2144
 2145                    b.Property<string>("Overview")
 2146                        .HasColumnType("TEXT")
 2147                        .HasMaxLength(512);
 2148
 2149                    b.Property<uint>("RowVersion")
 2150                        .IsConcurrencyToken()
 2151                        .HasColumnType("INTEGER");
 2152
 2153                    b.Property<string>("ShortOverview")
 2154                        .HasColumnType("TEXT")
 2155                        .HasMaxLength(512);
 2156
 2157                    b.Property<string>("Type")
 2158                        .IsRequired()
 2159                        .HasColumnType("TEXT")
 2160                        .HasMaxLength(256);
 2161
 2162                    b.Property<Guid>("UserId")
 2163                        .HasColumnType("TEXT");
 2164
 2165                    b.HasKey("Id");
 2166
 2167                    b.ToTable("ActivityLogs");
 2168                });
 69#pragma warning restore 612, 618
 2170        }
 71    }
 72}