fix: change route number variable type to int
This commit is contained in:
parent
12809e6ae1
commit
1b3b598539
@ -11,7 +11,7 @@ using TicketOffice.Data;
|
|||||||
namespace TicketOffice.Migrations
|
namespace TicketOffice.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(TicketOfficeContext))]
|
[DbContext(typeof(TicketOfficeContext))]
|
||||||
[Migration("20220329095305_InitialCreate")]
|
[Migration("20220330145408_InitialCreate")]
|
||||||
partial class InitialCreate
|
partial class InitialCreate
|
||||||
{
|
{
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
@ -54,9 +54,8 @@ namespace TicketOffice.Migrations
|
|||||||
b.Property<int>("Capacity")
|
b.Property<int>("Capacity")
|
||||||
.HasColumnType("INTEGER");
|
.HasColumnType("INTEGER");
|
||||||
|
|
||||||
b.Property<string>("Number")
|
b.Property<int>("Number")
|
||||||
.IsRequired()
|
.HasColumnType("INTEGER");
|
||||||
.HasColumnType("TEXT");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
@ -15,7 +15,7 @@ namespace TicketOffice.Migrations
|
|||||||
{
|
{
|
||||||
Id = table.Column<int>(type: "INTEGER", nullable: false)
|
Id = table.Column<int>(type: "INTEGER", nullable: false)
|
||||||
.Annotation("Sqlite:Autoincrement", true),
|
.Annotation("Sqlite:Autoincrement", true),
|
||||||
Number = table.Column<string>(type: "TEXT", nullable: false),
|
Number = table.Column<int>(type: "INTEGER", nullable: false),
|
||||||
Capacity = table.Column<int>(type: "INTEGER", nullable: false)
|
Capacity = table.Column<int>(type: "INTEGER", nullable: false)
|
||||||
},
|
},
|
||||||
constraints: table =>
|
constraints: table =>
|
@ -52,9 +52,8 @@ namespace TicketOffice.Migrations
|
|||||||
b.Property<int>("Capacity")
|
b.Property<int>("Capacity")
|
||||||
.HasColumnType("INTEGER");
|
.HasColumnType("INTEGER");
|
||||||
|
|
||||||
b.Property<string>("Number")
|
b.Property<int>("Number")
|
||||||
.IsRequired()
|
.HasColumnType("INTEGER");
|
||||||
.HasColumnType("TEXT");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ public class Route
|
|||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
|
||||||
public string Number { get; set; }
|
public int Number { get; set; }
|
||||||
public int Capacity { get; set; }
|
public int Capacity { get; set; }
|
||||||
|
|
||||||
public ICollection<City> Cities { get; set; }
|
public ICollection<City> Cities { get; set; }
|
||||||
|
@ -41,7 +41,7 @@ public class SeedData
|
|||||||
context.Route.AddRange(new Route[]
|
context.Route.AddRange(new Route[]
|
||||||
{
|
{
|
||||||
new Route {
|
new Route {
|
||||||
Number = "0001",
|
Number = 2,
|
||||||
Capacity = 30,
|
Capacity = 30,
|
||||||
Cities = new City[]
|
Cities = new City[]
|
||||||
{
|
{
|
||||||
@ -62,11 +62,11 @@ public class SeedData
|
|||||||
Name = "Сєвєродонецьк",
|
Name = "Сєвєродонецьк",
|
||||||
ArrivalTime = new DateTime(2022, 03, 28, 9, 55, 0)
|
ArrivalTime = new DateTime(2022, 03, 28, 9, 55, 0)
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
new Route
|
new Route
|
||||||
{
|
{
|
||||||
Number = "0002",
|
Number = 1,
|
||||||
Capacity = 25,
|
Capacity = 25,
|
||||||
Cities = new City[]
|
Cities = new City[]
|
||||||
{
|
{
|
||||||
@ -88,6 +88,37 @@ public class SeedData
|
|||||||
ArrivalTime = new DateTime(2022, 03, 28, 17, 40, 0)
|
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)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user