mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
f7bc5dfb2e
* Remove OrganizationUser.AccessAll * Final database migrations
29 lines
720 B
C#
29 lines
720 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.MySqlMigrations.Migrations;
|
|
|
|
/// <inheritdoc />
|
|
public partial class DropOrganizationUserAccessAll : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "AccessAll",
|
|
table: "OrganizationUser");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "AccessAll",
|
|
table: "OrganizationUser",
|
|
type: "tinyint(1)",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
}
|