mirror of
https://github.com/bitwarden/server
synced 2025-12-21 18:53:41 +00:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
30 lines
909 B
C#
30 lines
909 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");
|
|
}
|
|
}
|
|
}
|