| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | // <auto-generated /> |
| | 4 | | using System; |
| | 5 | | using Jellyfin.Database.Implementations; |
| | 6 | | using Microsoft.EntityFrameworkCore; |
| | 7 | | using Microsoft.EntityFrameworkCore.Infrastructure; |
| | 8 | | using Microsoft.EntityFrameworkCore.Migrations; |
| | 9 | | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; |
| | 10 | |
|
| | 11 | | namespace 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 |
| 21 | 20 | | modelBuilder |
| 21 | 21 | | .HasDefaultSchema("jellyfin") |
| 21 | 22 | | .HasAnnotation("ProductVersion", "3.1.3"); |
| | 23 | |
|
| 21 | 24 | | modelBuilder.Entity("Jellyfin.Data.Entities.ActivityLog", b => |
| 21 | 25 | | { |
| 21 | 26 | | b.Property<int>("Id") |
| 21 | 27 | | .ValueGeneratedOnAdd() |
| 21 | 28 | | .HasColumnType("INTEGER"); |
| 21 | 29 | |
|
| 21 | 30 | | b.Property<DateTime>("DateCreated") |
| 21 | 31 | | .HasColumnType("TEXT"); |
| 21 | 32 | |
|
| 21 | 33 | | b.Property<string>("ItemId") |
| 21 | 34 | | .HasColumnType("TEXT") |
| 21 | 35 | | .HasMaxLength(256); |
| 21 | 36 | |
|
| 21 | 37 | | b.Property<int>("LogSeverity") |
| 21 | 38 | | .HasColumnType("INTEGER"); |
| 21 | 39 | |
|
| 21 | 40 | | b.Property<string>("Name") |
| 21 | 41 | | .IsRequired() |
| 21 | 42 | | .HasColumnType("TEXT") |
| 21 | 43 | | .HasMaxLength(512); |
| 21 | 44 | |
|
| 21 | 45 | | b.Property<string>("Overview") |
| 21 | 46 | | .HasColumnType("TEXT") |
| 21 | 47 | | .HasMaxLength(512); |
| 21 | 48 | |
|
| 21 | 49 | | b.Property<uint>("RowVersion") |
| 21 | 50 | | .IsConcurrencyToken() |
| 21 | 51 | | .HasColumnType("INTEGER"); |
| 21 | 52 | |
|
| 21 | 53 | | b.Property<string>("ShortOverview") |
| 21 | 54 | | .HasColumnType("TEXT") |
| 21 | 55 | | .HasMaxLength(512); |
| 21 | 56 | |
|
| 21 | 57 | | b.Property<string>("Type") |
| 21 | 58 | | .IsRequired() |
| 21 | 59 | | .HasColumnType("TEXT") |
| 21 | 60 | | .HasMaxLength(256); |
| 21 | 61 | |
|
| 21 | 62 | | b.Property<Guid>("UserId") |
| 21 | 63 | | .HasColumnType("TEXT"); |
| 21 | 64 | |
|
| 21 | 65 | | b.HasKey("Id"); |
| 21 | 66 | |
|
| 21 | 67 | | b.ToTable("ActivityLogs"); |
| 21 | 68 | | }); |
| | 69 | | #pragma warning restore 612, 618 |
| 21 | 70 | | } |
| | 71 | | } |
| | 72 | | } |