diff --git a/TicketOffice/Migrations/20220329095305_InitialCreate.Designer.cs b/TicketOffice/Migrations/20220330145408_InitialCreate.Designer.cs similarity index 96% rename from TicketOffice/Migrations/20220329095305_InitialCreate.Designer.cs rename to TicketOffice/Migrations/20220330145408_InitialCreate.Designer.cs index 3edc673..ed2fb5c 100644 --- a/TicketOffice/Migrations/20220329095305_InitialCreate.Designer.cs +++ b/TicketOffice/Migrations/20220330145408_InitialCreate.Designer.cs @@ -11,7 +11,7 @@ using TicketOffice.Data; namespace TicketOffice.Migrations { [DbContext(typeof(TicketOfficeContext))] - [Migration("20220329095305_InitialCreate")] + [Migration("20220330145408_InitialCreate")] partial class InitialCreate { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -54,9 +54,8 @@ namespace TicketOffice.Migrations b.Property("Capacity") .HasColumnType("INTEGER"); - b.Property("Number") - .IsRequired() - .HasColumnType("TEXT"); + b.Property("Number") + .HasColumnType("INTEGER"); b.HasKey("Id"); diff --git a/TicketOffice/Migrations/20220329095305_InitialCreate.cs b/TicketOffice/Migrations/20220330145408_InitialCreate.cs similarity index 98% rename from TicketOffice/Migrations/20220329095305_InitialCreate.cs rename to TicketOffice/Migrations/20220330145408_InitialCreate.cs index cdbd5a8..81b092b 100644 --- a/TicketOffice/Migrations/20220329095305_InitialCreate.cs +++ b/TicketOffice/Migrations/20220330145408_InitialCreate.cs @@ -15,7 +15,7 @@ namespace TicketOffice.Migrations { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), - Number = table.Column(type: "TEXT", nullable: false), + Number = table.Column(type: "INTEGER", nullable: false), Capacity = table.Column(type: "INTEGER", nullable: false) }, constraints: table => diff --git a/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs b/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs index f622297..d1bcbaf 100644 --- a/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs +++ b/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs @@ -52,9 +52,8 @@ namespace TicketOffice.Migrations b.Property("Capacity") .HasColumnType("INTEGER"); - b.Property("Number") - .IsRequired() - .HasColumnType("TEXT"); + b.Property("Number") + .HasColumnType("INTEGER"); b.HasKey("Id"); diff --git a/TicketOffice/Models/Route.cs b/TicketOffice/Models/Route.cs index 7b5eeb8..de76b0e 100644 --- a/TicketOffice/Models/Route.cs +++ b/TicketOffice/Models/Route.cs @@ -6,7 +6,7 @@ public class Route { public int Id { get; set; } - public string Number { get; set; } + public int Number { get; set; } public int Capacity { get; set; } public ICollection Cities { get; set; } diff --git a/TicketOffice/Models/SeedData.cs b/TicketOffice/Models/SeedData.cs index 0d77aa0..a77e609 100644 --- a/TicketOffice/Models/SeedData.cs +++ b/TicketOffice/Models/SeedData.cs @@ -41,7 +41,7 @@ public class SeedData context.Route.AddRange(new Route[] { new Route { - Number = "0001", + Number = 2, Capacity = 30, Cities = new City[] { @@ -62,11 +62,11 @@ public class SeedData Name = "Сєвєродонецьк", ArrivalTime = new DateTime(2022, 03, 28, 9, 55, 0) } - }, + } }, new Route { - Number = "0002", + Number = 1, Capacity = 25, Cities = new City[] { @@ -88,6 +88,37 @@ public class SeedData ArrivalTime = new DateTime(2022, 03, 28, 17, 40, 0) } } + }, + new Route + { + Number = 3, + Capacity = 30, + Cities = new City[] + { + new City + { + Name = "Кремінна", + ArrivalTime = new DateTime(2022, 03, 28, 9, 20, 0), + DepartureTime = new DateTime(2022, 03, 28, 8, 40, 0), + }, + new City + { + Name = "Житлівка", + ArrivalTime = new DateTime(2022, 03, 28, 10, 0, 0), + DepartureTime = new DateTime(2022, 03, 28, 10, 15, 0), + }, + new City + { + Name = "Рубіжне", + ArrivalTime = new DateTime(2022, 03, 28, 11, 5, 0), + DepartureTime = new DateTime(2022, 03, 28, 11, 20, 0), + }, + new City + { + Name = "Сєвєродонецьк", + ArrivalTime = new DateTime(2022, 03, 28, 11, 55, 0) + } + } } }); diff --git a/TicketOffice/wwwroot/db/TicketOffice-SQLite.db b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db index 15f5bc7..3821e93 100644 Binary files a/TicketOffice/wwwroot/db/TicketOffice-SQLite.db and b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db differ diff --git a/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-shm b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-shm index ef32cac..fe9ac28 100644 Binary files a/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-shm and b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-shm differ diff --git a/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-wal b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-wal index 8da031b..e69de29 100644 Binary files a/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-wal and b/TicketOffice/wwwroot/db/TicketOffice-SQLite.db-wal differ