//
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using TicketOffice.Data;
#nullable disable
namespace TicketOffice.Migrations
{
[DbContext(typeof(TicketOfficeContext))]
partial class TicketOfficeContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "6.0.3");
modelBuilder.Entity("TicketOffice.Models.City", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("ArrivalTime")
.HasColumnType("TEXT");
b.Property("DepartureTime")
.HasColumnType("TEXT");
b.Property("Name")
.IsRequired()
.HasMaxLength(24)
.HasColumnType("TEXT");
b.Property("RouteId")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.HasIndex("RouteId");
b.ToTable("City");
});
modelBuilder.Entity("TicketOffice.Models.Route", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Capacity")
.HasColumnType("INTEGER");
b.Property("Number")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.ToTable("Route");
});
modelBuilder.Entity("TicketOffice.Models.Ticket", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("PassengerFirstName")
.IsRequired()
.HasColumnType("TEXT");
b.Property("PassengerLastName")
.IsRequired()
.HasColumnType("TEXT");
b.Property("PassengerPlace")
.HasColumnType("INTEGER");
b.Property("RouteId")
.HasColumnType("INTEGER");
b.Property("UserId")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.HasIndex("RouteId");
b.HasIndex("UserId");
b.ToTable("Ticket");
});
modelBuilder.Entity("TicketOffice.Models.User", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property("Email")
.IsRequired()
.HasMaxLength(48)
.HasColumnType("TEXT");
b.Property("FirstName")
.HasMaxLength(24)
.HasColumnType("TEXT");
b.Property("IsManager")
.HasColumnType("INTEGER");
b.Property("LastName")
.HasMaxLength(24)
.HasColumnType("TEXT");
b.Property("Password")
.IsRequired()
.HasMaxLength(32)
.HasColumnType("TEXT");
b.Property("Patronymic")
.HasMaxLength(24)
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("User");
});
modelBuilder.Entity("TicketOffice.Models.City", b =>
{
b.HasOne("TicketOffice.Models.Route", "Route")
.WithMany("Cities")
.HasForeignKey("RouteId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Route");
});
modelBuilder.Entity("TicketOffice.Models.Ticket", b =>
{
b.HasOne("TicketOffice.Models.Route", "Route")
.WithMany("Tickets")
.HasForeignKey("RouteId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("TicketOffice.Models.User", "User")
.WithMany("Tickets")
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Route");
b.Navigation("User");
});
modelBuilder.Entity("TicketOffice.Models.Route", b =>
{
b.Navigation("Cities");
b.Navigation("Tickets");
});
modelBuilder.Entity("TicketOffice.Models.User", b =>
{
b.Navigation("Tickets");
});
#pragma warning restore 612, 618
}
}
}