mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
201 lines
6.7 KiB
C#
201 lines
6.7 KiB
C#
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Bit.MySqlMigrations.Migrations;
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class Net8Sync : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropIndex(
|
|||
|
name: "IX_ProviderInvoiceItem_Id_InvoiceId",
|
|||
|
table: "ProviderInvoiceItem");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<long>(
|
|||
|
name: "Id",
|
|||
|
table: "SsoUser",
|
|||
|
type: "bigint",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(long),
|
|||
|
oldType: "bigint")
|
|||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<long>(
|
|||
|
name: "Id",
|
|||
|
table: "SsoConfig",
|
|||
|
type: "bigint",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(long),
|
|||
|
oldType: "bigint")
|
|||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "PlanName",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "varchar(50)",
|
|||
|
maxLength: 50,
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "longtext",
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "InvoiceNumber",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "varchar(50)",
|
|||
|
maxLength: 50,
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "longtext",
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "InvoiceId",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "varchar(50)",
|
|||
|
maxLength: 50,
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "varchar(255)",
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "ClientName",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "varchar(50)",
|
|||
|
maxLength: 50,
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "longtext",
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<int>(
|
|||
|
name: "Id",
|
|||
|
table: "Grant",
|
|||
|
type: "int",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(int),
|
|||
|
oldType: "int")
|
|||
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "Discriminator",
|
|||
|
table: "AccessPolicy",
|
|||
|
type: "varchar(34)",
|
|||
|
maxLength: 34,
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "longtext")
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AlterColumn<long>(
|
|||
|
name: "Id",
|
|||
|
table: "SsoUser",
|
|||
|
type: "bigint",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(long),
|
|||
|
oldType: "bigint")
|
|||
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<long>(
|
|||
|
name: "Id",
|
|||
|
table: "SsoConfig",
|
|||
|
type: "bigint",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(long),
|
|||
|
oldType: "bigint")
|
|||
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "PlanName",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "longtext",
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "varchar(50)",
|
|||
|
oldMaxLength: 50,
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "InvoiceNumber",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "longtext",
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "varchar(50)",
|
|||
|
oldMaxLength: 50,
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "InvoiceId",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "varchar(255)",
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "varchar(50)",
|
|||
|
oldMaxLength: 50,
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "ClientName",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
type: "longtext",
|
|||
|
nullable: true,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "varchar(50)",
|
|||
|
oldMaxLength: 50,
|
|||
|
oldNullable: true)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<int>(
|
|||
|
name: "Id",
|
|||
|
table: "Grant",
|
|||
|
type: "int",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(int),
|
|||
|
oldType: "int")
|
|||
|
.OldAnnotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
migrationBuilder.AlterColumn<string>(
|
|||
|
name: "Discriminator",
|
|||
|
table: "AccessPolicy",
|
|||
|
type: "longtext",
|
|||
|
nullable: false,
|
|||
|
oldClrType: typeof(string),
|
|||
|
oldType: "varchar(34)",
|
|||
|
oldMaxLength: 34)
|
|||
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|||
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_ProviderInvoiceItem_Id_InvoiceId",
|
|||
|
table: "ProviderInvoiceItem",
|
|||
|
columns: new[] { "Id", "InvoiceId" },
|
|||
|
unique: true);
|
|||
|
}
|
|||
|
}
|