mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
578 lines
20 KiB
C#
578 lines
20 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Remotely.Server.Data;
|
|
|
|
namespace Remotely.Server.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
partial class ApplicationDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "3.1.0");
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(256);
|
|
|
|
b.Property<string>("NormalizedName")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(256);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedName")
|
|
.IsUnique()
|
|
.HasName("RoleNameIndex");
|
|
|
|
b.ToTable("AspNetRoles");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("RoleId")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("AspNetRoleClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Discriminator")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Email")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(256);
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(256);
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(256);
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<bool>("PhoneNumberConfirmed")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(256);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedEmail")
|
|
.HasName("EmailIndex");
|
|
|
|
b.HasIndex("NormalizedUserName")
|
|
.IsUnique()
|
|
.HasName("UserNameIndex");
|
|
|
|
b.ToTable("RemotelyUsers");
|
|
|
|
b.HasDiscriminator<string>("Discriminator").HasValue("IdentityUser");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("UserId")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AspNetUserClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
|
|
{
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(128);
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(128);
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("UserId")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("LoginProvider", "ProviderKey");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AspNetUserLogins");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
|
|
{
|
|
b.Property<string>("UserId")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("RoleId")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("AspNetUserRoles");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
|
|
{
|
|
b.Property<string>("UserId")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(128);
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(128);
|
|
|
|
b.Property<string>("Value")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
b.ToTable("AspNetUserTokens");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.CommandContext", b =>
|
|
{
|
|
b.Property<string>("ID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("CommandMode")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("CommandResults")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("CommandText")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("OrganizationID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("PSCoreResults")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("SenderConnectionID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("SenderUserID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("TargetDeviceIDs")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<DateTime>("TimeStamp")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("OrganizationID");
|
|
|
|
b.ToTable("CommandContexts");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.Device", b =>
|
|
{
|
|
b.Property<string>("ID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("AgentVersion")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Alias")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(100);
|
|
|
|
b.Property<string>("CurrentUser")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("DeviceGroupID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("DeviceName")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Drives")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<double>("FreeMemory")
|
|
.HasColumnType("REAL");
|
|
|
|
b.Property<double>("FreeStorage")
|
|
.HasColumnType("REAL");
|
|
|
|
b.Property<bool>("Is64Bit")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<bool>("IsOnline")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<DateTime>("LastOnline")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<int>("OSArchitecture")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("OSDescription")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("OrganizationID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Platform")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<int>("ProcessorCount")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("ServerVerificationToken")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Tags")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<double>("TotalMemory")
|
|
.HasColumnType("REAL");
|
|
|
|
b.Property<double>("TotalStorage")
|
|
.HasColumnType("REAL");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("DeviceGroupID");
|
|
|
|
b.HasIndex("OrganizationID");
|
|
|
|
b.ToTable("Devices");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.DeviceGroup", b =>
|
|
{
|
|
b.Property<string>("ID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<string>("OrganizationID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("OrganizationID");
|
|
|
|
b.ToTable("DeviceGroups");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.EventLog", b =>
|
|
{
|
|
b.Property<string>("ID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<int>("EventType")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("Message")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("OrganizationID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Source")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("StackTrace")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<DateTime>("TimeStamp")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("OrganizationID");
|
|
|
|
b.ToTable("EventLogs");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.InviteLink", b =>
|
|
{
|
|
b.Property<string>("ID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<DateTime>("DateSent")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("InvitedUser")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<bool>("IsAdmin")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("OrganizationID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("ResetUrl")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("OrganizationID");
|
|
|
|
b.ToTable("InviteLinks");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.Organization", b =>
|
|
{
|
|
b.Property<string>("ID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("OrganizationName")
|
|
.HasColumnType("TEXT")
|
|
.HasMaxLength(25);
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.ToTable("Organizations");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.SharedFile", b =>
|
|
{
|
|
b.Property<string>("ID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("ContentType")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<byte[]>("FileContents")
|
|
.HasColumnType("BLOB");
|
|
|
|
b.Property<string>("FileName")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("OrganizationID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<DateTime>("Timestamp")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("OrganizationID");
|
|
|
|
b.ToTable("SharedFiles");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.RemotelyUser", b =>
|
|
{
|
|
b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser");
|
|
|
|
b.Property<bool>("IsAdministrator")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("OrganizationID")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("UserOptions")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasIndex("OrganizationID");
|
|
|
|
b.HasDiscriminator().HasValue("RemotelyUser");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
|
|
{
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
|
|
{
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
|
|
{
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
|
|
{
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
|
|
{
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.CommandContext", b =>
|
|
{
|
|
b.HasOne("Remotely.Shared.Models.Organization", "Organization")
|
|
.WithMany("CommandContexts")
|
|
.HasForeignKey("OrganizationID");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.Device", b =>
|
|
{
|
|
b.HasOne("Remotely.Shared.Models.DeviceGroup", "DeviceGroup")
|
|
.WithMany("Devices")
|
|
.HasForeignKey("DeviceGroupID");
|
|
|
|
b.HasOne("Remotely.Shared.Models.Organization", "Organization")
|
|
.WithMany("Devices")
|
|
.HasForeignKey("OrganizationID");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.DeviceGroup", b =>
|
|
{
|
|
b.HasOne("Remotely.Shared.Models.Organization", "Organization")
|
|
.WithMany("DeviceGroups")
|
|
.HasForeignKey("OrganizationID");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.EventLog", b =>
|
|
{
|
|
b.HasOne("Remotely.Shared.Models.Organization", "Organization")
|
|
.WithMany("EventLogs")
|
|
.HasForeignKey("OrganizationID");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.InviteLink", b =>
|
|
{
|
|
b.HasOne("Remotely.Shared.Models.Organization", "Organization")
|
|
.WithMany("InviteLinks")
|
|
.HasForeignKey("OrganizationID");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.SharedFile", b =>
|
|
{
|
|
b.HasOne("Remotely.Shared.Models.Organization", "Organization")
|
|
.WithMany("SharedFiles")
|
|
.HasForeignKey("OrganizationID");
|
|
});
|
|
|
|
modelBuilder.Entity("Remotely.Shared.Models.RemotelyUser", b =>
|
|
{
|
|
b.HasOne("Remotely.Shared.Models.Organization", "Organization")
|
|
.WithMany("RemotelyUsers")
|
|
.HasForeignKey("OrganizationID");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|