irc-netcore-api/IRaCIS.Core.Infra.EFCore/Migrations/20260512071158_SEGUpdateTim...

30 lines
774 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class SEGUpdateTime : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "SEGUpdateTime",
table: "Segmentation",
type: "datetime2",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SEGUpdateTime",
table: "Segmentation");
}
}
}