Files
DiunaBI/WebAPI/Migrations/20231030142419_Record.Value32.cs
Michał Zieliński bcbce3adcb New processor.
2023-10-30 16:39:13 +01:00

29 lines
712 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace WebAPI.Migrations
{
/// <inheritdoc />
public partial class RecordValue32 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<float>(
name: "Value32",
table: "Records",
type: "real",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Value32",
table: "Records");
}
}
}