2022-06-16 21:59:57 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
|
|
|
namespace Bit.MySqlMigrations.Migrations;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-06-16 21:59:57 +02:00
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|