using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.MySqlMigrations.Migrations; public partial class SecretsManagerEvent : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "SecretId", table: "Event", type: "char(36)", nullable: true, collation: "ascii_general_ci"); migrationBuilder.AddColumn( name: "ServiceAccountId", table: "Event", type: "char(36)", nullable: true, collation: "ascii_general_ci"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "SecretId", table: "Event"); migrationBuilder.DropColumn( name: "ServiceAccountId", table: "Event"); } }