30 lines
788 B
C#
30 lines
788 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace EntKube.Web.Data.Migrations.Sqlite
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddMongoMaxBackups : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "MaxBackups",
|
|
table: "MongoClusters",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: 20);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "MaxBackups",
|
|
table: "MongoClusters");
|
|
}
|
|
}
|
|
}
|