mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
26 lines
676 B
C#
26 lines
676 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Bit.SqliteMigrations.Migrations;
|
|||
|
|
|||
|
public partial class SecretsManagerOrganizationUser : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<bool>(
|
|||
|
name: "AccessSecretsManager",
|
|||
|
table: "OrganizationUser",
|
|||
|
type: "INTEGER",
|
|||
|
nullable: false,
|
|||
|
defaultValue: false);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "AccessSecretsManager",
|
|||
|
table: "OrganizationUser");
|
|||
|
}
|
|||
|
}
|