2022-06-30 01:46:41 +02:00
|
|
|
|
using Bit.Core.Utilities;
|
2021-10-22 15:11:14 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
|
|
|
namespace Bit.MySqlMigrations.Migrations;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-10-22 15:11:14 +02:00
|
|
|
|
public partial class SetMaxAutoscaleSeatsToCurrentSeatCount : Migration
|
|
|
|
|
{
|
|
|
|
|
private const string _scriptLocation =
|
2023-01-10 19:46:19 +01:00
|
|
|
|
"MySqlMigrations.HelperScripts.2021-10-21_00_SetMaxAutoscaleSeatCount.sql";
|
2021-10-22 15:11:14 +02:00
|
|
|
|
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
2022-08-29 21:53:48 +02:00
|
|
|
|
{
|
2021-10-22 15:11:14 +02:00
|
|
|
|
migrationBuilder.Sql(CoreHelpers.GetEmbeddedResourceContentsAsync(_scriptLocation));
|
2022-08-29 21:53:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-22 15:11:14 +02:00
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Irreversible migration");
|
|
|
|
|
}
|
|
|
|
|
}
|