Telegram.Bot.SpaceApi/Migrations/20230408003033_BAFEF0C6-23AD-4DA8-A055-AB37FDA7E760.cs
2023-04-08 14:47:20 +02:00

37 lines
1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Telegram.Bot.SpaceApi.Migrations
{
/// <inheritdoc />
public partial class BAFEF0C623AD4DA8A055AB37FDA7E760 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "ApiOverrideAddress",
table: "Bots",
type: "TEXT",
nullable: true,
oldClrType: typeof(string),
oldType: "TEXT");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "ApiOverrideAddress",
table: "Bots",
type: "TEXT",
nullable: false,
defaultValue: "",
oldClrType: typeof(string),
oldType: "TEXT",
oldNullable: true);
}
}
}