// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Watcher.Data; #nullable disable namespace Watcher.Migrations { [DbContext(typeof(AppDbContext))] partial class AppDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "8.0.6") .HasAnnotation("Relational:MaxIdentifierLength", 64); modelBuilder.Entity("Watcher.Models.Container", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); b.Property("CreatedAt") .HasColumnType("datetime(6)"); b.Property("Hostname") .IsRequired() .HasColumnType("longtext"); b.Property("ImageId") .HasColumnType("int"); b.Property("IsRunning") .HasColumnType("tinyint(1)"); b.Property("Name") .IsRequired() .HasColumnType("longtext"); b.Property("Status") .IsRequired() .HasColumnType("longtext"); b.Property("TagId") .HasColumnType("int"); b.Property("Type") .IsRequired() .HasColumnType("longtext"); b.HasKey("Id"); b.HasIndex("ImageId"); b.HasIndex("TagId"); b.ToTable("Containers"); }); modelBuilder.Entity("Watcher.Models.Image", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); b.Property("Name") .HasColumnType("longtext"); b.Property("Tag") .HasColumnType("longtext"); b.HasKey("Id"); b.ToTable("Images"); }); modelBuilder.Entity("Watcher.Models.LogEvent", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); b.Property("ContainerId") .HasColumnType("int"); b.Property("Level") .HasColumnType("longtext"); b.Property("Message") .HasColumnType("longtext"); b.Property("ServerId") .HasColumnType("int"); b.Property("Timestamp") .HasColumnType("datetime(6)"); b.HasKey("Id"); b.HasIndex("ContainerId"); b.HasIndex("ServerId"); b.ToTable("LogEvents"); }); modelBuilder.Entity("Watcher.Models.Metric", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); b.Property("ContainerId") .HasColumnType("int"); b.Property("ServerId") .HasColumnType("int"); b.Property("Timestamp") .HasColumnType("datetime(6)"); b.Property("Type") .HasColumnType("longtext"); b.Property("Value") .HasColumnType("double"); b.HasKey("Id"); b.HasIndex("ContainerId"); b.HasIndex("ServerId"); b.ToTable("Metrics"); }); modelBuilder.Entity("Watcher.Models.Server", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); b.Property("CreatedAt") .HasColumnType("datetime(6)"); b.Property("Description") .HasColumnType("longtext"); b.Property("IPAddress") .IsRequired() .HasColumnType("longtext"); b.Property("IsOnline") .HasColumnType("tinyint(1)"); b.Property("LastSeen") .HasColumnType("datetime(6)"); b.Property("Name") .IsRequired() .HasColumnType("longtext"); b.Property("TagId") .HasColumnType("int"); b.Property("Type") .IsRequired() .HasColumnType("longtext"); b.HasKey("Id"); b.HasIndex("TagId"); b.ToTable("Servers"); }); modelBuilder.Entity("Watcher.Models.Tag", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); b.Property("Name") .HasColumnType("longtext"); b.HasKey("Id"); b.ToTable("Tags"); }); modelBuilder.Entity("Watcher.Models.User", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); b.Property("Email") .HasColumnType("longtext"); b.Property("LastLogin") .HasColumnType("datetime(6)"); b.Property("PocketId") .IsRequired() .HasColumnType("longtext"); b.Property("PreferredUsername") .IsRequired() .HasColumnType("longtext"); b.HasKey("Id"); b.ToTable("Users"); }); modelBuilder.Entity("Watcher.Models.Container", b => { b.HasOne("Watcher.Models.Image", "Image") .WithMany("Containers") .HasForeignKey("ImageId"); b.HasOne("Watcher.Models.Tag", null) .WithMany("Containers") .HasForeignKey("TagId"); b.Navigation("Image"); }); modelBuilder.Entity("Watcher.Models.LogEvent", b => { b.HasOne("Watcher.Models.Container", "Container") .WithMany() .HasForeignKey("ContainerId"); b.HasOne("Watcher.Models.Server", "Server") .WithMany() .HasForeignKey("ServerId"); b.Navigation("Container"); b.Navigation("Server"); }); modelBuilder.Entity("Watcher.Models.Metric", b => { b.HasOne("Watcher.Models.Container", "Container") .WithMany() .HasForeignKey("ContainerId"); b.HasOne("Watcher.Models.Server", "Server") .WithMany() .HasForeignKey("ServerId"); b.Navigation("Container"); b.Navigation("Server"); }); modelBuilder.Entity("Watcher.Models.Server", b => { b.HasOne("Watcher.Models.Tag", null) .WithMany("Servers") .HasForeignKey("TagId"); }); modelBuilder.Entity("Watcher.Models.Image", b => { b.Navigation("Containers"); }); modelBuilder.Entity("Watcher.Models.Tag", b => { b.Navigation("Containers"); b.Navigation("Servers"); }); #pragma warning restore 612, 618 } } }