ticket_manager/Migrations/20200312204707_Migration1.Designer.cs
2020-04-18 14:59:35 +02:00

337 lines
11 KiB
C#

// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using TicketManager.Data;
namespace TicketManager.Migrations
{
[DbContext(typeof(AppDbContext))]
[Migration("20200312204707_Migration1")]
partial class Migration1
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "3.1.1");
modelBuilder.Entity("TicketManager.Models.Activity", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<int>("ActivityType")
.HasColumnType("INTEGER");
b.Property<Guid?>("AppUserId")
.HasColumnType("TEXT");
b.Property<string>("Description")
.HasColumnType("TEXT");
b.Property<int?>("ProjectId")
.HasColumnType("INTEGER");
b.Property<int>("TaskId")
.HasColumnType("INTEGER");
b.Property<int?>("TicketId")
.HasColumnType("INTEGER");
b.Property<DateTime>("UpdateDate")
.HasColumnType("TEXT");
b.HasKey("Id");
b.HasIndex("AppUserId");
b.HasIndex("ProjectId");
b.HasIndex("TicketId");
b.ToTable("Activities");
});
modelBuilder.Entity("TicketManager.Models.AppUser", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("TEXT");
b.Property<DateTime>("CreationDate")
.HasColumnType("TEXT");
b.Property<string>("Email")
.HasColumnType("TEXT");
b.Property<string>("FirstName")
.IsRequired()
.HasColumnType("TEXT")
.HasMaxLength(50);
b.Property<string>("LastName")
.IsRequired()
.HasColumnType("TEXT")
.HasMaxLength(50);
b.Property<string>("Phone")
.HasColumnType("TEXT");
b.Property<string>("Picture")
.HasColumnType("TEXT");
b.Property<string>("Presentation")
.HasColumnType("TEXT")
.HasMaxLength(200);
b.HasKey("Id");
b.ToTable("AppUsers");
});
modelBuilder.Entity("TicketManager.Models.Assignment", b =>
{
b.Property<int>("ProjectId")
.HasColumnType("INTEGER");
b.Property<Guid>("UserId")
.HasColumnType("TEXT");
b.HasKey("ProjectId", "UserId");
b.HasIndex("UserId");
b.ToTable("Assignments");
});
modelBuilder.Entity("TicketManager.Models.File", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<Guid?>("AddedById")
.HasColumnType("TEXT");
b.Property<string>("Description")
.HasColumnType("TEXT");
b.Property<string>("FileName")
.HasColumnType("TEXT");
b.Property<string>("Format")
.HasColumnType("TEXT");
b.Property<string>("Location")
.HasColumnType("TEXT");
b.Property<int?>("ProjectId")
.HasColumnType("INTEGER");
b.Property<int>("Size")
.HasColumnType("INTEGER");
b.Property<int?>("TicketId")
.HasColumnType("INTEGER");
b.Property<int>("UserId")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.HasIndex("AddedById");
b.HasIndex("ProjectId");
b.HasIndex("TicketId");
b.ToTable("Files");
});
modelBuilder.Entity("TicketManager.Models.Note", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<DateTime>("CreationDate")
.HasColumnType("TEXT");
b.Property<string>("Description")
.HasColumnType("TEXT");
b.Property<int?>("TicketId")
.HasColumnType("INTEGER");
b.Property<string>("Title")
.HasColumnType("TEXT");
b.HasKey("Id");
b.HasIndex("TicketId");
b.ToTable("Notes");
});
modelBuilder.Entity("TicketManager.Models.Project", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<DateTime>("CreationDate")
.HasColumnType("TEXT");
b.Property<string>("Description")
.HasColumnType("TEXT")
.HasMaxLength(200);
b.Property<DateTime>("EndingDate")
.HasColumnType("TEXT");
b.Property<Guid?>("ManagerId")
.HasColumnType("TEXT");
b.Property<int>("Status")
.HasColumnType("INTEGER");
b.Property<string>("Title")
.IsRequired()
.HasColumnType("TEXT")
.HasMaxLength(50);
b.HasKey("Id");
b.HasIndex("ManagerId");
b.ToTable("Projects");
});
modelBuilder.Entity("TicketManager.Models.Ticket", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<Guid?>("AppUserId")
.HasColumnType("TEXT");
b.Property<int>("Category")
.HasColumnType("INTEGER");
b.Property<DateTime>("CreationDate")
.HasColumnType("TEXT");
b.Property<Guid>("CreatorId")
.HasColumnType("TEXT");
b.Property<string>("Description")
.HasColumnType("TEXT")
.HasMaxLength(100);
b.Property<int>("Difficulty")
.HasColumnType("INTEGER");
b.Property<DateTime>("EndingDate")
.HasColumnType("TEXT");
b.Property<int>("Impact")
.HasColumnType("INTEGER");
b.Property<int?>("ProjectId")
.HasColumnType("INTEGER");
b.Property<int>("Status")
.HasColumnType("INTEGER");
b.Property<string>("Title")
.IsRequired()
.HasColumnType("TEXT")
.HasMaxLength(100);
b.HasKey("Id");
b.HasIndex("AppUserId");
b.HasIndex("ProjectId");
b.ToTable("Tickets");
});
modelBuilder.Entity("TicketManager.Models.Activity", b =>
{
b.HasOne("TicketManager.Models.AppUser", null)
.WithMany("Activities")
.HasForeignKey("AppUserId");
b.HasOne("TicketManager.Models.Project", null)
.WithMany("Activities")
.HasForeignKey("ProjectId");
b.HasOne("TicketManager.Models.Ticket", null)
.WithMany("Activities")
.HasForeignKey("TicketId");
});
modelBuilder.Entity("TicketManager.Models.Assignment", b =>
{
b.HasOne("TicketManager.Models.Project", "Project")
.WithMany("Assignments")
.HasForeignKey("ProjectId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("TicketManager.Models.AppUser", "User")
.WithMany("Assignments")
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("TicketManager.Models.File", b =>
{
b.HasOne("TicketManager.Models.AppUser", "AddedBy")
.WithMany()
.HasForeignKey("AddedById");
b.HasOne("TicketManager.Models.Project", null)
.WithMany("Files")
.HasForeignKey("ProjectId");
b.HasOne("TicketManager.Models.Ticket", null)
.WithMany("Files")
.HasForeignKey("TicketId");
});
modelBuilder.Entity("TicketManager.Models.Note", b =>
{
b.HasOne("TicketManager.Models.Ticket", "Ticket")
.WithMany("Notes")
.HasForeignKey("TicketId");
});
modelBuilder.Entity("TicketManager.Models.Project", b =>
{
b.HasOne("TicketManager.Models.AppUser", "Manager")
.WithMany()
.HasForeignKey("ManagerId");
});
modelBuilder.Entity("TicketManager.Models.Ticket", b =>
{
b.HasOne("TicketManager.Models.AppUser", null)
.WithMany("Tickets")
.HasForeignKey("AppUserId");
b.HasOne("TicketManager.Models.Project", "Project")
.WithMany("Tickets")
.HasForeignKey("ProjectId");
});
#pragma warning restore 612, 618
}
}
}