From 2ee2ed46e9ec59188e1b4f0e5008ca1069535b7e Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Sat, 26 Mar 2022 22:26:48 +0200 Subject: [PATCH] feat: add empty database file --- .../20220326192901_InitialCreate.Designer.cs | 179 ++++++++++++++++++ .../20220326192901_InitialCreate.cs | 125 ++++++++++++ .../TicketOfficeContextModelSnapshot.cs | 177 +++++++++++++++++ .../wwwroot/db/TicketOffice-SQLite.db | Bin 0 -> 45056 bytes 4 files changed, 481 insertions(+) create mode 100644 TicketOffice/Migrations/20220326192901_InitialCreate.Designer.cs create mode 100644 TicketOffice/Migrations/20220326192901_InitialCreate.cs create mode 100644 TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs create mode 100644 TicketOffice/wwwroot/db/TicketOffice-SQLite.db 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 0000000000000000000000000000000000000000..6dd5e7c99ed41154bf0aba8de3602aaa6cb9ce8a GIT binary patch literal 45056 zcmeI)OK%%h6u|KrJN2uCupk;`)vFPUT5UrfQll=AFwS)u)fpSxL5WahrpXYE@FN|M zfh@9U3w#cCtoS%=Sn&}ME0)}OII>;42@4jn|09nx&vWPe&Yeka61n+B)eBtlP2cZ2 zf!NhP&{8SwQz0}>OR4#;nnzPkEv$@I)K`6MdER15+pJx#uKlAGatGS`zpwqa`uFND z@0}O^${*)fa=)sLOb8%=00IagaJvPL3K`?khJNAoPTe1@qjt+X`PL2EhXdEQPUDrk z<%TS^q_FILc_hr~gG^Dgg&7}eiu-1Ks#*LhpD{k(&@ZPVH~PcC9fdB;3!NM_9ecF7 z*vw^&2kZK96uj&O7wu$kxSW40@c0pN*lA-o>apRQY_goUM zRr;(d$FeO5HJR3_sdQTMscZ!}@G!dUvEAuF;W?Xql& z7$wwExfR0-@5`!GouFK5mP`9GzM9#sg&8CrXu7RY-pwk@ z$`Y0>oU@Z9Nve7Cg2X3WR}S0hx~6E!BURO;vPmUMzVChKbXwlL1NPl>#}9_S>PT}B z@dkm@JDJnMf2(zv&;L+q<^SkT6kN z?gW0nchU7uW|vTQ9j`NcSKS#5zVG|$#-3GsYjEK7oU^dsPT%*1VtqwDn;z)Lk=Ed4 zM-A561NY_7RfV2fy)$7rwex;Y^}UDc%;KxB(^^#}pZd*Ms@SINBcb&j}yt%cxTTprFYkz9$ z#e@I?2q1s}0tg_000IagfB*uwRN!7(=HK;8fbj4C>Yx6Z5I_I{1Q0*~0R#|0009IL zKwyCd82>MDaY+pU1Q0*~0R#|0009ILKmdV6fbl