36 lines
868 B
C#
36 lines
868 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace CompanyManagment.EFCore.Migrations
|
|
{
|
|
public partial class editInsuraceJobeAnJobs : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "CreationDate",
|
|
table: "InsuranceJobAndJobs");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "id",
|
|
table: "InsuranceJobAndJobs");
|
|
|
|
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
|
|
|
|
migrationBuilder.AddColumn<long>(
|
|
name: "id",
|
|
table: "InsuranceJobAndJobs",
|
|
type: "bigint",
|
|
nullable: false,
|
|
defaultValue: 0L);
|
|
|
|
|
|
}
|
|
}
|
|
}
|