You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/modules/background-jobs/app/Volo.Abp.BackgroundJobs.Dem.../Migrations/20181211140407_AggragateRoo...

32 lines
953 B

using Microsoft.EntityFrameworkCore.Migrations;
namespace Volo.Abp.BackgroundJobs.DemoApp.Migrations
{
public partial class AggragateRoot_Changes : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ConcurrencyStamp",
table: "AbpBackgroundJobs",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "ExtraProperties",
table: "AbpBackgroundJobs",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ConcurrencyStamp",
table: "AbpBackgroundJobs");
migrationBuilder.DropColumn(
name: "ExtraProperties",
table: "AbpBackgroundJobs");
}
}
}