using System;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
#nullable disable
|
|
namespace ApiTools.Database.Migrations.Migrations
|
{
|
/// <inheritdoc />
|
public partial class UpdateSmsLog : Migration
|
{
|
/// <inheritdoc />
|
protected override void Up(MigrationBuilder migrationBuilder)
|
{
|
migrationBuilder.AddColumn<Guid>(
|
name: "ChannelCreatedUserId",
|
table: "SmsLog",
|
type: "uniqueidentifier",
|
nullable: true);
|
}
|
|
/// <inheritdoc />
|
protected override void Down(MigrationBuilder migrationBuilder)
|
{
|
migrationBuilder.DropColumn(
|
name: "ChannelCreatedUserId",
|
table: "SmsLog");
|
}
|
}
|
}
|