mirror of
https://github.com/bitwarden/server.git
synced 2024-12-02 13:53:23 +01:00
bd297fb7a2
* SqlServer split manage collection permission * Clarify names * Test claims generation * Test permission serialization * Simplify claims building * Use new collections permissions * Throw on use of deprecated permissions * Lower case all claims * Remove todos * Clean nonexistent project from test solution * JsonIgnore for both system and newtonsoft json * Make migrations more robust to multiple runs * remove duplicate usings * Remove obsolete permissions * Test solutions separately to detect failures * Handle dos line endings * Fix collections create/update permissions * Change restore cipher to edit permissions * Improve formatting * Simplify map * Refactor test
23 lines
697 B
C#
23 lines
697 B
C#
using System;
|
|
using Bit.Core.Utilities;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Bit.MySqlMigrations.Migrations
|
|
{
|
|
public partial class SplitManageCollectionsPermissions : Migration
|
|
{
|
|
private const string _scriptLocation =
|
|
"MySqlMigrations.Scripts.2021-09-21_00_SplitManageCollectionsPermission.sql";
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.Sql(CoreHelpers.GetEmbeddedResourceContentsAsync(_scriptLocation));
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
throw new Exception("Irreversible migration");
|
|
}
|
|
}
|
|
}
|