This removes enpoints where you can CRUD only VehicleEnrollment database table and refines those where you can CRUD both VehicleEnrollment and RouteAddressDetail
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Server.Migrations
|
|
{
|
|
public partial class Remove_IsCancelled_field_from_VehicleEnrollment : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "DelayTimeSpan",
|
|
table: "VehicleEnrollments");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "IsCanceled",
|
|
table: "VehicleEnrollments");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<TimeSpan>(
|
|
name: "DelayTimeSpan",
|
|
table: "VehicleEnrollments",
|
|
type: "interval",
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "IsCanceled",
|
|
table: "VehicleEnrollments",
|
|
type: "boolean",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
}
|
|
}
|