auto.bus_razor/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs

177 lines
5.5 KiB
C#

// <auto-generated />
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<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<DateTime?>("ArrivalTime")
.HasColumnType("TEXT");
b.Property<DateTime?>("DepartureTime")
.HasColumnType("TEXT");
b.Property<string>("Name")
.IsRequired()
.HasMaxLength(24)
.HasColumnType("TEXT");
b.Property<int>("RouteId")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.HasIndex("RouteId");
b.ToTable("City");
});
modelBuilder.Entity("TicketOffice.Models.Route", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<int>("Capacity")
.HasColumnType("INTEGER");
b.Property<int>("Number")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.ToTable("Route");
});
modelBuilder.Entity("TicketOffice.Models.Ticket", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<string>("PassengerFirstName")
.IsRequired()
.HasColumnType("TEXT");
b.Property<string>("PassengerLastName")
.IsRequired()
.HasColumnType("TEXT");
b.Property<int>("PassengerPlace")
.HasColumnType("INTEGER");
b.Property<int>("RouteId")
.HasColumnType("INTEGER");
b.Property<int>("UserId")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.HasIndex("RouteId");
b.HasIndex("UserId");
b.ToTable("Ticket");
});
modelBuilder.Entity("TicketOffice.Models.User", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<string>("Email")
.IsRequired()
.HasMaxLength(48)
.HasColumnType("TEXT");
b.Property<string>("FirstName")
.HasMaxLength(24)
.HasColumnType("TEXT");
b.Property<bool>("IsManager")
.HasColumnType("INTEGER");
b.Property<string>("LastName")
.HasMaxLength(24)
.HasColumnType("TEXT");
b.Property<string>("Password")
.IsRequired()
.HasMaxLength(32)
.HasColumnType("TEXT");
b.Property<string>("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
}
}
}