mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
231eb84e69
* Turn on ImplicitUsings * Fix formatting * Run linter
22 lines
684 B
C#
22 lines
684 B
C#
using Bit.Core.Utilities;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Bit.MySqlMigrations.Migrations
|
|
{
|
|
public partial class SplitManageCollectionsPermissions2 : Migration
|
|
{
|
|
private const string _scriptLocation =
|
|
"MySqlMigrations.Scripts.2021-09-21_01_SplitManageCollectionsPermission.sql";
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.Sql(CoreHelpers.GetEmbeddedResourceContentsAsync(_scriptLocation));
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
throw new Exception("Irreversible migration");
|
|
}
|
|
}
|
|
}
|