auto.bus_api/Server/Migrations/20230524135132_Remove_IsCancelled_field_from_VehicleEnrollment.cs
cuqmbr 39fddff553 refactor: change VehicleEnrollment CRUD to perform only compound data manipulations
This removes enpoints where you can CRUD only VehicleEnrollment database table and refines those where you can CRUD both VehicleEnrollment and RouteAddressDetail
2023-05-24 16:53:31 +03:00

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);
}
}
}