2022-06-30 01:46:41 +02:00
|
|
|
|
using Bit.Core.Utilities;
|
2021-10-05 18:12:05 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
|
|
|
namespace Bit.PostgresMigrations.Migrations;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-10-05 18:12:05 +02:00
|
|
|
|
public partial class SplitManageCollectionsPermissions2 : Migration
|
|
|
|
|
{
|
|
|
|
|
private const string _scriptLocation =
|
|
|
|
|
"PostgresMigrations.Scripts.2021-09-21_01_SplitManageCollectionsPermission.psql";
|
|
|
|
|
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
2022-08-29 21:53:48 +02:00
|
|
|
|
{
|
2021-10-05 18:12:05 +02:00
|
|
|
|
migrationBuilder.Sql(CoreHelpers.GetEmbeddedResourceContentsAsync(_scriptLocation));
|
2022-08-29 21:53:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-05 18:12:05 +02:00
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Irreversible migration");
|
|
|
|
|
}
|
|
|
|
|
}
|