using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ManagerService.Migrations
{
///
public partial class AddWebSlugAndPublicApiKeyToInstance : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "PublicApiKey",
table: "Instances",
type: "text",
nullable: true);
migrationBuilder.AddColumn(
name: "WebSlug",
table: "Instances",
type: "text",
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PublicApiKey",
table: "Instances");
migrationBuilder.DropColumn(
name: "WebSlug",
table: "Instances");
}
}
}