mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
29 lines
815 B
C#
29 lines
815 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Bit.MySqlMigrations.Migrations;
|
|
|
|
public partial class DeactivatedUserStatus : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<short>(
|
|
name: "Status",
|
|
table: "OrganizationUser",
|
|
type: "smallint",
|
|
nullable: false,
|
|
oldClrType: typeof(byte),
|
|
oldType: "tinyint unsigned");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<byte>(
|
|
name: "Status",
|
|
table: "OrganizationUser",
|
|
type: "tinyint unsigned",
|
|
nullable: false,
|
|
oldClrType: typeof(short),
|
|
oldType: "smallint");
|
|
}
|
|
}
|