mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
25 lines
654 B
C#
25 lines
654 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Bit.MySqlMigrations.Migrations;
|
|||
|
|
|||
|
public partial class OrganizationDomainClaimRenameNextRunCount : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.RenameColumn(
|
|||
|
name: "NextRunCount",
|
|||
|
table: "OrganizationDomain",
|
|||
|
newName: "JobRunCount");
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.RenameColumn(
|
|||
|
name: "JobRunCount",
|
|||
|
table: "OrganizationDomain",
|
|||
|
newName: "NextRunCount");
|
|||
|
}
|
|||
|
}
|