32 lines
848 B
C#
32 lines
848 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace w4c_workflows.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddWorkflowVersion : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Version",
|
|
schema: "workflows",
|
|
table: "Workflows",
|
|
type: "text",
|
|
nullable: false,
|
|
defaultValue: "1.0.0");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Version",
|
|
schema: "workflows",
|
|
table: "Workflows");
|
|
}
|
|
}
|
|
}
|