diff --git a/TicketOffice/Migrations/20220326192901_InitialCreate.Designer.cs b/TicketOffice/Migrations/20220326192901_InitialCreate.Designer.cs new file mode 100644 index 0000000..fc1ed8f --- /dev/null +++ b/TicketOffice/Migrations/20220326192901_InitialCreate.Designer.cs @@ -0,0 +1,179 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using TicketOffice.Data; + +#nullable disable + +namespace TicketOffice.Migrations +{ + [DbContext(typeof(TicketOfficeContext))] + [Migration("20220326192901_InitialCreate")] + partial class InitialCreate + { + protected override void BuildTargetModel(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") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DepartureTime") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Distance") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(30) + .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") + .IsRequired() + .HasMaxLength(4) + .HasColumnType("TEXT"); + + b.Property("RemainingCapacity") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.ToTable("Route"); + }); + + modelBuilder.Entity("TicketOffice.Models.Ticket", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .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() + .HasColumnType("TEXT"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(16) + .HasColumnType("TEXT"); + + b.Property("IsManager") + .HasColumnType("INTEGER"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(16) + .HasColumnType("TEXT"); + + b.Property("Password") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("TEXT"); + + b.Property("Patronymic") + .IsRequired() + .HasMaxLength(16) + .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 + } + } +} diff --git a/TicketOffice/Migrations/20220326192901_InitialCreate.cs b/TicketOffice/Migrations/20220326192901_InitialCreate.cs new file mode 100644 index 0000000..d46c1d4 --- /dev/null +++ b/TicketOffice/Migrations/20220326192901_InitialCreate.cs @@ -0,0 +1,125 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace TicketOffice.Migrations +{ + public partial class InitialCreate : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Route", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Number = table.Column(type: "TEXT", maxLength: 4, nullable: false), + Capacity = table.Column(type: "INTEGER", nullable: false), + RemainingCapacity = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Route", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "User", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + FirstName = table.Column(type: "TEXT", maxLength: 16, nullable: false), + LastName = table.Column(type: "TEXT", maxLength: 16, nullable: false), + Patronymic = table.Column(type: "TEXT", maxLength: 16, nullable: false), + Email = table.Column(type: "TEXT", nullable: false), + Password = table.Column(type: "TEXT", maxLength: 64, nullable: false), + IsManager = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_User", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "City", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Name = table.Column(type: "TEXT", maxLength: 30, nullable: false), + ArrivalTime = table.Column(type: "TEXT", nullable: false), + DepartureTime = table.Column(type: "TEXT", nullable: false), + Distance = table.Column(type: "TEXT", nullable: false), + RouteId = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_City", x => x.Id); + table.ForeignKey( + name: "FK_City_Route_RouteId", + column: x => x.RouteId, + principalTable: "Route", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "Ticket", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + UserId = table.Column(type: "INTEGER", nullable: false), + RouteId = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Ticket", x => x.Id); + table.ForeignKey( + name: "FK_Ticket_Route_RouteId", + column: x => x.RouteId, + principalTable: "Route", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_Ticket_User_UserId", + column: x => x.UserId, + principalTable: "User", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_City_RouteId", + table: "City", + column: "RouteId"); + + migrationBuilder.CreateIndex( + name: "IX_Ticket_RouteId", + table: "Ticket", + column: "RouteId"); + + migrationBuilder.CreateIndex( + name: "IX_Ticket_UserId", + table: "Ticket", + column: "UserId"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "City"); + + migrationBuilder.DropTable( + name: "Ticket"); + + migrationBuilder.DropTable( + name: "Route"); + + migrationBuilder.DropTable( + name: "User"); + } + } +} diff --git a/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs b/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs new file mode 100644 index 0000000..dfc6701 --- /dev/null +++ b/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs @@ -0,0 +1,177 @@ +// +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") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DepartureTime") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Distance") + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(30) + .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") + .IsRequired() + .HasMaxLength(4) + .HasColumnType("TEXT"); + + b.Property("RemainingCapacity") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.ToTable("Route"); + }); + + modelBuilder.Entity("TicketOffice.Models.Ticket", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .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() + .HasColumnType("TEXT"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(16) + .HasColumnType("TEXT"); + + b.Property("IsManager") + .HasColumnType("INTEGER"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(16) + .HasColumnType("TEXT"); + + b.Property("Password") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("TEXT"); + + b.Property("Patronymic") + .IsRequired() + .HasMaxLength(16) + .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 + } + } +} diff --git a/TicketOffice/wwwroot/db/TicketOffice-SQLite.db b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db new file mode 100644 index 0000000..6dd5e7c Binary files /dev/null and b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db differ